diff options
author | Yang Tse <yangsita@gmail.com> | 2006-11-03 03:05:15 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2006-11-03 03:05:15 +0000 |
commit | 7408976b158c56034c9e9d739acf41a6d462418e (patch) | |
tree | 4af7a88ccd9f22fd1be73b7736344abe7fcb26a2 | |
parent | 763bb73cc3a533105ff07c24fcd80961b762700e (diff) |
fix missing '$' for var OPT_LIBSSH2
-rw-r--r-- | configure.ac | 2 |
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 |