[configure.ac] use /bin/test -L to work around broken builtin on Solaris 8
This commit is contained in:
parent
d760f451a4
commit
49e457c43b
|
@ -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 $
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue