summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2013-03-05 19:57:39 +1100
committerDarren Tucker <dtucker@zip.com.au>2013-03-05 19:57:39 +1100
commit5f0e54c8924e7f2391342cfd8198bd92e28d726f (patch)
tree8c7f035172eb3e6eae5cfe5dfe02f549bfca364f
parent43e5e60badb827104363169c333b0b7eadb0d09a (diff)
- (dtucker) [configure.ac] use "=" for shell test and not "==". Spotted by
Kevin Brott.
-rw-r--r--ChangeLog2
-rw-r--r--configure.ac6
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 8190c663..15f20c8b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
20130305
- (djm) [regress/modpipe.c] Compilation fix for AIX and parsing fix for
HP/UX. Spotted by Kevin Brott
+ - (dtucker) [configure.ac] use "=" for shell test and not "==". Spotted by
+ Kevin Brott.
20130227
- (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
diff --git a/configure.ac b/configure.ac
index f2d67119..bd8b21d6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.510 2013/02/25 00:24:44 dtucker Exp $
+# $Id: configure.ac,v 1.511 2013/03/05 08:57:39 dtucker 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.510 $)
+AC_REVISION($Revision: 1.511 $)
AC_CONFIG_SRCDIR([ssh.c])
AC_LANG([C])
@@ -2744,7 +2744,7 @@ elif test "x$sandbox_arg" = "xseccomp_filter" || \
AC_DEFINE([SANDBOX_SECCOMP_FILTER], [1], [Sandbox using seccomp filter])
elif test "x$sandbox_arg" = "xrlimit" || \
( test -z "$sandbox_arg" && test "x$ac_cv_func_setrlimit" = "xyes" && \
- test "x$select_works_with_rlimit" == "xyes" ) ; then
+ test "x$select_works_with_rlimit" = "xyes" ) ; then
test "x$ac_cv_func_setrlimit" != "xyes" && \
AC_MSG_ERROR([rlimit sandbox requires setrlimit function])
test "x$select_works_with_rlimit" != "xyes" && \