summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2006-11-03 03:05:15 +0000
committerYang Tse <yangsita@gmail.com>2006-11-03 03:05:15 +0000
commit7408976b158c56034c9e9d739acf41a6d462418e (patch)
tree4af7a88ccd9f22fd1be73b7736344abe7fcb26a2
parent763bb73cc3a533105ff07c24fcd80961b762700e (diff)
downloadgnurl-7408976b158c56034c9e9d739acf41a6d462418e.tar.gz
gnurl-7408976b158c56034c9e9d739acf41a6d462418e.tar.bz2
gnurl-7408976b158c56034c9e9d739acf41a6d462418e.zip
fix missing '$' for var OPT_LIBSSH2
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index b33681541..8c96873e8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1091,7 +1091,7 @@ if test X"$OPT_LIBSSH2" != Xno; then
LIBSSH2_ENABLED=1
AC_DEFINE(USE_LIBSSH2, 1, [if libSSH2 is in use]))
- if test X"OPT_LIBSSH2" != Xoff &&
+ if test X"$OPT_LIBSSH2" != Xoff &&
test "$LIBSSH2_ENABLED" != "1"; then
AC_MSG_ERROR([libSSH2 libs and/or directories were not found where specified!])
fi