diff options
author | Tobias Brunner <tobias@strongswan.org> | 2014-03-03 17:14:26 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2014-03-03 17:14:26 +0100 |
commit | af15c71bfbfab2e732159f06bb024aa77a489246 (patch) | |
tree | 5619cddf4ee20dd56239c5149811a6b4a219f479 /configure.ac | |
parent | d6ce8da6c019d9b6e7fc208317928a6f5d17f04f (diff) | |
download | strongswan-af15c71bfbfab2e732159f06bb024aa77a489246.tar.bz2 strongswan-af15c71bfbfab2e732159f06bb024aa77a489246.tar.xz |
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.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 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) |