summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-04-06 20:30:07 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-04-06 20:30:07 +0000
commit0318801591e629a21b86b79eb13abde1dddcf92e (patch)
treea69c37ff546297a3fbee531ff024ab57f703e8ae
parent8ff2a8d2c2cef0c446cf7ac9002f9045a15cbef5 (diff)
- (bal) Quiet down configure.ac if /bin/test does not exist.
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 5cd744a4d..0d922f9f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,7 @@
15 by Juha Yrjölä <jyrjola@cc.hut.fi> 15 by Juha Yrjölä <jyrjola@cc.hut.fi>
16 - (bal) Revered out of runtime IRIX detection of joblimits. Code is 16 - (bal) Revered out of runtime IRIX detection of joblimits. Code is
17 incomplete. 17 incomplete.
18 - (bal) Quiet down configure.ac if /bin/test does not exist.
18 19
1920020405 2020020405
20 - (bal) Patch for OpenSC SmartCard library; ok markus@; patch by 21 - (bal) Patch for OpenSC SmartCard library; ok markus@; patch by
@@ -8185,4 +8186,4 @@
8185 - Wrote replacements for strlcpy and mkdtemp 8186 - Wrote replacements for strlcpy and mkdtemp
8186 - Released 1.0pre1 8187 - Released 1.0pre1
8187 8188
8188$Id: ChangeLog,v 1.2031 2002/04/06 18:58:31 mouring Exp $ 8189$Id: ChangeLog,v 1.2032 2002/04/06 20:30:07 mouring Exp $
diff --git a/configure.ac b/configure.ac
index 2208c4a07..a9dea2eec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.33 2002/04/06 18:58:32 mouring Exp $ 1# $Id: configure.ac,v 1.34 2002/04/06 20:30:09 mouring Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -1008,7 +1008,7 @@ AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
1008 1008
1009OPATH=$PATH 1009OPATH=$PATH
1010PATH=/bin:/usr/bin 1010PATH=/bin:/usr/bin
1011/bin/test -L /bin && PATH=/usr/bin 1011/bin/test -L /bin 2> /dev/null && PATH=/usr/bin
1012test -d /sbin && PATH=$PATH:/sbin 1012test -d /sbin && PATH=$PATH:/sbin
1013test -d /usr/sbin && PATH=$PATH:/usr/sbin 1013test -d /usr/sbin && PATH=$PATH:/usr/sbin
1014PATH=$PATH:/etc:$OPATH 1014PATH=$PATH:/etc:$OPATH