From 0389dbec3b738fa7e1dbef2b5317124b95bdfb20 Mon Sep 17 00:00:00 2001 From: Julien Cristau Date: Mon, 16 Feb 2009 01:27:24 +0100 Subject: Typo fix This makes us really error out if we want libuuid but can't find it. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1d67f62..9730b70 100644 --- a/configure.ac +++ b/configure.ac @@ -45,7 +45,7 @@ AC_ARG_WITH(libuuid, AC_HELP_STRING([--with-libuuid], [Build with libuuid suppor if test x"$with_libuuid" != xno; then PKG_CHECK_MODULES(LIBUUID, uuid, [HAVE_LIBUUID=yes], [HAVE_LIBUUID=no]) fi -if test x"$with_libuuid" = xyes && test HAVE_LIBUUID = no; then +if test x"$with_libuuid" = xyes && test x"$HAVE_LIBUUID" = xno; then AC_MSG_ERROR([requested libuuid support but uuid.pc not found]) fi AM_CONDITIONAL(WITH_LIBUUID, test x"$HAVE_LIBUUID" = xyes) -- cgit v1.2.3