From fe54dc64410bdcc6358bcf9b87d15bd1d0d54884 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Thu, 26 May 2016 09:26:09 +0100 Subject: [PATCH] configure.ac: Quote `$ac_cv_search_clock_gettime' properly. This can expand to `none required', which confuses test(1). My fault. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3c8cb375..902d7d59 100644 --- a/configure.ac +++ b/configure.ac @@ -227,7 +227,7 @@ AC_CHECK_HEADERS([linux/random.h]) mdw_ORIG_LIBS=$LIBS LIBS=$CATACOMB_LIBS AC_SEARCH_LIBS([clock_gettime], [rt]) CATACOMB_LIBS=$LIBS LIBS=$mdw_ORIG_LIBS -if test $ac_cv_search_clock_gettime != no; then +if test "$ac_cv_search_clock_gettime" != no; then AC_DEFINE([HAVE_CLOCK_GETTIME], [1], [Define if you have the \`clock_gettime' function.]) fi -- 2.11.0