]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
[configure.ac] use /bin/test -L to work around broken builtin on Solaris 8
authorTim Rice <tim@multitalents.net>
Sun, 31 Mar 2002 19:23:06 +0000 (11:23 -0800)
committerTim Rice <tim@multitalents.net>
Sun, 31 Mar 2002 19:23:06 +0000 (11:23 -0800)
ChangeLog
configure.ac

index effd2e90cd1c777f937d7c54d49503a0842d5667..eeee1958b2d2b3b4572908016972d95f5e94e5b1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+20020331
+ - (tim) [configure.ac] use /bin/test -L to work around broken builtin on
+   Solaris 8
+
 20020330
  - (stevesk) [configure.ac] remove header check for sys/ttcompat.h
    bug 167
  - Wrote replacements for strlcpy and mkdtemp
  - Released 1.0pre1
 
-$Id: ChangeLog,v 1.2002 2002/03/30 17:55:21 stevesk Exp $
+$Id: ChangeLog,v 1.2003 2002/03/31 19:23:06 tim Exp $
index 5d7bc20e64bb390f73d556db377491a71e648e0c..09607b07d390b008efd3af6822308c53d3236ca4 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: configure.ac,v 1.29 2002/03/30 17:55:23 stevesk Exp $
+# $Id: configure.ac,v 1.30 2002/03/31 19:23:07 tim Exp $
 
 AC_INIT
 AC_CONFIG_SRCDIR([ssh.c])
@@ -1015,7 +1015,7 @@ AC_DEFINE_UNQUOTED(ENTROPY_TIMEOUT_MSEC, $entropy_timeout)
 
 OPATH=$PATH
 PATH=/bin:/usr/bin
-test -L /bin && PATH=/usr/bin
+/bin/test -L /bin && PATH=/usr/bin
 test -d /sbin && PATH=$PATH:/sbin
 test -d /usr/sbin && PATH=$PATH:/usr/sbin
 PATH=$PATH:/etc:$OPATH