From 49e457c43b1c882d7313ae29b843b374b61e61d4 Mon Sep 17 00:00:00 2001 From: Tim Rice Date: Sun, 31 Mar 2002 11:23:06 -0800 Subject: [configure.ac] use /bin/test -L to work around broken builtin on Solaris 8 --- ChangeLog | 6 +++++- configure.ac | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index effd2e90c..eeee1958b 100644 --- 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 @@ -8093,4 +8097,4 @@ - 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 $ diff --git a/configure.ac b/configure.ac index 5d7bc20e6..09607b07d 100644 --- a/configure.ac +++ b/configure.ac @@ -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 -- cgit v1.2.3