URL: https://github.com/SSSD/sssd/pull/210 Author: lslebodn Title: #210: Kcm configure Action: synchronized
To pull the PR as Git branch: git remote add ghsssd https://github.com/SSSD/sssd git fetch ghsssd pull/210/head:pr210 git checkout pr210
From 23fbd75966081def5322ef71154b419b45d908ff Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik <[email protected]> Date: Mon, 27 Mar 2017 11:59:01 +0200 Subject: [PATCH] CONFIGURE: Fix fallback if pkg-config for uuid is missing --- src/external/libuuid.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/external/libuuid.m4 b/src/external/libuuid.m4 index 55411a2..323521c 100644 --- a/src/external/libuuid.m4 +++ b/src/external/libuuid.m4 @@ -4,7 +4,7 @@ AC_SUBST(UUID_CFLAGS) PKG_CHECK_MODULES([UUID], [uuid], [found_uuid=yes], [found_uuid=no]) SSS_AC_EXPAND_LIB_DIR() -AS_IF([test x"$found_uuid" = xyes], +AS_IF([test x"$found_uuid" != xyes], [AC_CHECK_HEADERS([uuid/uuid.h], [AC_CHECK_LIB([uuid], [uuid_generate],
_______________________________________________ sssd-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
