diff options
author | Damien Miller <djm@mindrot.org> | 2000-06-10 16:51:33 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-06-10 16:51:33 +1000 |
commit | d900e45faa8c26e07d60ad497d99e99e43d8b0f9 (patch) | |
tree | aec6ab819ce7bf4620ff9625a496e519c8229176 | |
parent | c601a7596f1db83757f49458f09b59bc0b57ef0c (diff) |
- (djm) Fix for configure on bash2 from Jim Knoble <jmknoble@jmknoble.cx>
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | aclocal.m4 | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,6 @@ | |||
1 | 20000610 | 1 | 20000610 |
2 | - (djm) Minor doc tweaks | 2 | - (djm) Minor doc tweaks |
3 | - (djm) Fix for configure on bash2 from Jim Knoble <jmknoble@jmknoble.cx> | ||
3 | 4 | ||
4 | 20000609 | 5 | 20000609 |
5 | - (djm) Patch from Kenji Miyake <kenji@miyake.org> to disable utmp usage | 6 | - (djm) Patch from Kenji Miyake <kenji@miyake.org> to disable utmp usage |
diff --git a/aclocal.m4 b/aclocal.m4 index 16345e122..dfa2d0a12 100644 --- a/aclocal.m4 +++ b/aclocal.m4 | |||
@@ -1,4 +1,4 @@ | |||
1 | dnl $Id: aclocal.m4,v 1.2 2000/05/08 10:49:37 damien Exp $ | 1 | dnl $Id: aclocal.m4,v 1.3 2000/06/10 06:51:33 djm Exp $ |
2 | dnl | 2 | dnl |
3 | dnl OpenSSH-specific autoconf macros | 3 | dnl OpenSSH-specific autoconf macros |
4 | dnl | 4 | dnl |
@@ -22,7 +22,7 @@ AC_DEFUN(OSSH_CHECK_HEADER_FOR_FIELD, [ | |||
22 | eval "$ossh_varname=no" dnl | 22 | eval "$ossh_varname=no" dnl |
23 | ]) dnl | 23 | ]) dnl |
24 | ]) | 24 | ]) |
25 | ossh_result=`eval "echo "$"$ossh_varname"` | 25 | ossh_result=`eval echo \$"$ossh_varname"` |
26 | if test -n "`echo $ossh_varname`"; then | 26 | if test -n "`echo $ossh_varname`"; then |
27 | AC_MSG_RESULT($ossh_result) | 27 | AC_MSG_RESULT($ossh_result) |
28 | if test "x$ossh_result" = "xyes"; then | 28 | if test "x$ossh_result" = "xyes"; then |