diff options
| author | Richard Nyberg <rnyberg@murmeldjur.se> | 2005-06-28 16:39:56 +0000 |
|---|---|---|
| committer | Richard Nyberg <rnyberg@murmeldjur.se> | 2005-06-28 16:39:56 +0000 |
| commit | 2131b9c00eafbdbce6890272fd4df9bac6d41e2f (patch) | |
| tree | b9b4c3030a61dc5d85f9d471e3a7e2cf6e6f0e74 /configure.ac | |
| parent | 33e4dfd65ff3c2c06e3774da831ebfd0b94c7263 (diff) | |
| download | btpd-2131b9c00eafbdbce6890272fd4df9bac6d41e2f.tar.gz btpd-2131b9c00eafbdbce6890272fd4df9bac6d41e2f.zip | |
test(1) uses '=' as the equality operator, not '=='.
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 134101f..ec84aff 100644 --- a/configure.ac +++ b/configure.ac @@ -50,11 +50,11 @@ LDFLAGS="$LDFLAGS $openssl_LDFLAGS" AC_CHECK_LIB(crypto, SHA1_Final, :, echo Must have openssl; exit 1) LDFLAGS=$old_LDFLAGS -if test x$CURLCONF == x; then +if test x$CURLCONF = x; then AC_PATH_PROG(CURLCONF, curl-config) fi -if test x$CURLCONF == x -o \! \( -r $CURLCONF -a -x $CURLCONF \); then +if test x$CURLCONF = x -o \! \( -r "$CURLCONF" -a -x "$CURLCONF" \); then echo Must have the curl-config script exit 1 else |