diff options
author | Damien Miller <djm@mindrot.org> | 2014-01-29 21:01:33 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2014-01-29 21:01:33 +1100 |
commit | c161fc90fc86e2035710570238a9e1ca7a68d2a5 (patch) | |
tree | f1060ca939c40d12efa6f10436496dad92880f5c /configure.ac | |
parent | 6f917ad376481995ab7d29fb53b08ec8d507eb9e (diff) | |
download | openssh-git-c161fc90fc86e2035710570238a9e1ca7a68d2a5.tar.gz |
- (djm) [configure.ac] Fix broken shell test '==' vs '='; patch from
Tom G. Christensen
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 62229b64..627ce517 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.565 2014/01/28 04:07:10 djm Exp $ +# $Id: configure.ac,v 1.566 2014/01/29 10:01:33 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.565 $) +AC_REVISION($Revision: 1.566 $) AC_CONFIG_SRCDIR([ssh.c]) AC_LANG([C]) @@ -1593,7 +1593,7 @@ if test "x$use_toolchain_hardening" != "x1" && test "x$use_pie" = "xauto"; then # Turn off automatic PIE when toolchain hardening is off. use_pie=no fi -if test "x$use_pie" == "xauto"; then +if test "x$use_pie" = "xauto"; then # Automatic PIE requires gcc >= 4.x AC_MSG_CHECKING([for gcc >= 4.x]) AC_COMPILE_IFELSE([AC_LANG_SOURCE([[ |