From af15c71bfbfab2e732159f06bb024aa77a489246 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Mon, 3 Mar 2014 17:14:26 +0100 Subject: [PATCH] configure: Fix autoreconf with older autotools Older autoconf versions (e.g. on CentOS 6.5) produce an empty else block for the removed empty argument, which the shell then trips over when executing ./configure. Fixes #536. --- configure.ac | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 8a925c29a..ec189c9da 100644 --- a/configure.ac +++ b/configure.ac @@ -528,8 +528,7 @@ AC_CHECK_FUNC( AC_MSG_FAILURE([qsort_r has unknown semantics])]) ]) CFLAGS="$save_CFLAGS" - ], - [] + ] ) AC_CHECK_FUNCS(prctl mallinfo getpass closefrom getpwnam_r getgrnam_r getpwuid_r)