summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-10-11 22:35:22 +1100
committerDamien Miller <djm@mindrot.org>2010-10-11 22:35:22 +1100
commit1f78980099b72270538b671a40b6052e8875d0b3 (patch)
tree2f49fe765fa7bd4ee0dd96b4b03bc9fa16760e3e /configure.ac
parent88b844f19b93c68dff1700effb4d42959caea91a (diff)
- (djm) [configure.ac] Use = instead of == in shell tests. Patch from
dr AT vasco.com
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 4deb0fe2e..2b57e8e06 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.454 2010/10/07 10:39:17 djm Exp $ 1# $Id: configure.ac,v 1.455 2010/10/11 11:35:23 djm Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -15,7 +15,7 @@
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 16
17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) 17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18AC_REVISION($Revision: 1.454 $) 18AC_REVISION($Revision: 1.455 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -1295,7 +1295,7 @@ AC_ARG_WITH(libedit,
1295 LDFLAGS="-L${withval}/lib ${LDFLAGS}" 1295 LDFLAGS="-L${withval}/lib ${LDFLAGS}"
1296 fi 1296 fi
1297 fi 1297 fi
1298 if test "x$use_pkgconfig_for_libedit" == "xyes"; then 1298 if test "x$use_pkgconfig_for_libedit" = "xyes"; then
1299 LIBEDIT=`$PKGCONFIG --libs-only-l libedit` 1299 LIBEDIT=`$PKGCONFIG --libs-only-l libedit`
1300 CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libedit`" 1300 CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libedit`"
1301 else 1301 else