From c4116b86130a4bffacb145f4eedbd2ed6a567495 Mon Sep 17 00:00:00 2001 From: Nathaniel Clark Date: Thu, 19 Jul 2018 15:26:27 -0400 Subject: [PATCH] LU-11160 build: Fix uuid / blkid dependency UUID dependency stems from libblkid, so only link with uuid if blkid is present. Lustre-change: https://review.whamcloud.com/32842 Lustre-commit: b6c2ffa661f5aceb50fe03fbc8cfd7cdf7966ae2 Signed-off-by: Nathaniel Clark Change-Id: If1cc293cc48210a065f8910ea655615b11268b5c Reviewed-by: Quentin Bouget Reviewed-by: Andreas Dilger Reviewed-by: James Simmons Signed-off-by: Minh Diep Reviewed-on: https://review.whamcloud.com/33147 Tested-by: Jenkins Tested-by: Maloo Reviewed-by: John L. Hammond --- lustre/utils/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lustre/utils/Makefile.am b/lustre/utils/Makefile.am index 0e16b65..e8f2673 100644 --- a/lustre/utils/Makefile.am +++ b/lustre/utils/Makefile.am @@ -80,7 +80,7 @@ EXT2FSLIB = endif if BLKID -BLKIDLIB = -lblkid +BLKIDLIB = -lblkid -luuid else BLKIDLIB = endif -- 1.8.3.1