Blame SOURCES/0037-CONFIGURE-Fix-fallback-if-pkg-config-for-uuid-is-mis.patch
|
|
ecf709 |
From bb7c93869d53a412ce2537180752158861755ac4 Mon Sep 17 00:00:00 2001
|
|
|
ecf709 |
From: Lukas Slebodnik <lslebodn@redhat.com>
|
|
|
ecf709 |
Date: Mon, 27 Mar 2017 11:59:01 +0200
|
|
|
ecf709 |
Subject: [PATCH 37/54] CONFIGURE: Fix fallback if pkg-config for uuid is
|
|
|
ecf709 |
missing
|
|
|
ecf709 |
MIME-Version: 1.0
|
|
|
ecf709 |
Content-Type: text/plain; charset=UTF-8
|
|
|
ecf709 |
Content-Transfer-Encoding: 8bit
|
|
|
ecf709 |
|
|
|
ecf709 |
Reviewed-by: Fabiano FidĂȘncio <fidencio@redhat.com>
|
|
|
ecf709 |
---
|
|
|
ecf709 |
src/external/libuuid.m4 | 2 +-
|
|
|
ecf709 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
ecf709 |
|
|
|
ecf709 |
diff --git a/src/external/libuuid.m4 b/src/external/libuuid.m4
|
|
|
ecf709 |
index 55411a2118bd787c9d50ba61f9cb791e1c76088d..323521c9224e443f40a15b417038d2dcea9b66f3 100644
|
|
|
ecf709 |
--- a/src/external/libuuid.m4
|
|
|
ecf709 |
+++ b/src/external/libuuid.m4
|
|
|
ecf709 |
@@ -4,7 +4,7 @@ AC_SUBST(UUID_CFLAGS)
|
|
|
ecf709 |
PKG_CHECK_MODULES([UUID], [uuid], [found_uuid=yes], [found_uuid=no])
|
|
|
ecf709 |
|
|
|
ecf709 |
SSS_AC_EXPAND_LIB_DIR()
|
|
|
ecf709 |
-AS_IF([test x"$found_uuid" = xyes],
|
|
|
ecf709 |
+AS_IF([test x"$found_uuid" != xyes],
|
|
|
ecf709 |
[AC_CHECK_HEADERS([uuid/uuid.h],
|
|
|
ecf709 |
[AC_CHECK_LIB([uuid],
|
|
|
ecf709 |
[uuid_generate],
|
|
|
ecf709 |
--
|
|
|
ecf709 |
2.9.3
|
|
|
ecf709 |
|