]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (bal) Quiet down configure.ac if /bin/test does not exist.
authorBen Lindstrom <mouring@eviladmin.org>
Sat, 6 Apr 2002 20:30:07 +0000 (20:30 +0000)
committerBen Lindstrom <mouring@eviladmin.org>
Sat, 6 Apr 2002 20:30:07 +0000 (20:30 +0000)
ChangeLog
configure.ac

index 5cd744a4d4b4b3dbe32b5e4302e127dd6fb07ac6..0d922f9f1392c10a87b2504e428dd2b80301edfb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,7 @@
    by Juha Yrjölä <jyrjola@cc.hut.fi> 
  - (bal) Revered out of runtime IRIX detection of joblimits.  Code is
    incomplete.
+ - (bal) Quiet down configure.ac if /bin/test does not exist.
 
 20020405
  - (bal) Patch for OpenSC SmartCard library; ok markus@; patch by
  - Wrote replacements for strlcpy and mkdtemp
  - Released 1.0pre1
 
-$Id: ChangeLog,v 1.2031 2002/04/06 18:58:31 mouring Exp $
+$Id: ChangeLog,v 1.2032 2002/04/06 20:30:07 mouring Exp $
index 2208c4a0730e206bbb65f0691a5f9e370473f64f..a9dea2eec941ef6901cc66b0ac7b2a6f237abf1d 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.33 2002/04/06 18:58:32 mouring Exp $
+# $Id: configure.ac,v 1.34 2002/04/06 20:30:09 mouring Exp $
 
 AC_INIT
 AC_CONFIG_SRCDIR([ssh.c])
@@ -1008,7 +1008,7 @@ AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
 
 OPATH=$PATH
 PATH=/bin:/usr/bin
-/bin/test -L /bin && PATH=/usr/bin
+/bin/test -L /bin 2> /dev/null && PATH=/usr/bin
 test -d /sbin && PATH=$PATH:/sbin
 test -d /usr/sbin && PATH=$PATH:/usr/sbin
 PATH=$PATH:/etc:$OPATH