diff options
author | Damien Miller <djm@mindrot.org> | 2010-10-11 13:35:22 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2010-10-11 13:35:22 +0200 |
commit | 1f78980099b72270538b671a40b6052e8875d0b3 (patch) | |
tree | 2f49fe765fa7bd4ee0dd96b4b03bc9fa16760e3e /configure.ac | |
parent | - (djm) [openbsd-compat/Makefile.in] Actually link timingsafe_bcmp (diff) | |
download | openssh-1f78980099b72270538b671a40b6052e8875d0b3.tar.xz openssh-1f78980099b72270538b671a40b6052e8875d0b3.zip |
- (djm) [configure.ac] Use = instead of == in shell tests. Patch from
dr AT vasco.com
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 6 |
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 @@ -# $Id: configure.ac,v 1.454 2010/10/07 10:39:17 djm Exp $ +# $Id: configure.ac,v 1.455 2010/10/11 11:35:23 djm Exp $ # # Copyright (c) 1999-2004 Damien Miller # @@ -15,7 +15,7 @@ # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) -AC_REVISION($Revision: 1.454 $) +AC_REVISION($Revision: 1.455 $) AC_CONFIG_SRCDIR([ssh.c]) AC_CONFIG_HEADER(config.h) @@ -1295,7 +1295,7 @@ AC_ARG_WITH(libedit, LDFLAGS="-L${withval}/lib ${LDFLAGS}" fi fi - if test "x$use_pkgconfig_for_libedit" == "xyes"; then + if test "x$use_pkgconfig_for_libedit" = "xyes"; then LIBEDIT=`$PKGCONFIG --libs-only-l libedit` CPPFLAGS="$CPPFLAGS `$PKGCONFIG --cflags libedit`" else |