]> andersk Git - openssh.git/commitdiff
[configure.ac] use /bin/test -L to work around broken builtin on Solaris 8
authortim <tim>
Sun, 31 Mar 2002 19:23:06 +0000 (19:23 +0000)
committertim <tim>
Sun, 31 Mar 2002 19:23:06 +0000 (19:23 +0000)
ChangeLog
configure.ac

index ac1f33d07bd6cc07989e61cddb142340c0a791a4..453b1443418a4045a72df3630719c4caf5f2c9b9 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
index 5d5d6c369f3d5127c68da1307a804d55190afa80..2e50566ecd97d388c39b618f71f678e52e158573 100644 (file)
@@ -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
This page took 0.065324 seconds and 5 git commands to generate.