test -h is deprecated; use -L instead.

PR:             bin/40846
This commit is contained in:
Ruslan Ermilov 2002-10-01 13:29:45 +00:00
parent 7e3998a3de
commit 7206028152
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104288
10 changed files with 10 additions and 10 deletions

View File

@ -15,7 +15,7 @@ bootconf_start()
if [ ! -e /etc/etc.current ]; then
return 0
fi
if [ -h /etc/etc.default ]; then
if [ -L /etc/etc.default ]; then
def=`ls -ld /etc/etc.default 2>&1`
default="${def##*-> etc.}"
else

View File

@ -103,7 +103,7 @@ fi
# XXX: mtree runs too early to create any directories needed in /tmp,
# so if /var/tmp == /tmp, then you don't get a vi.recover.
#
if [ ! -h /tmp ]; then
if [ ! -L /tmp ]; then
mount_md ${tmpsize:=64m} /tmp 2
chmod 01777 /tmp
fi

View File

@ -103,7 +103,7 @@ fi
# XXX: mtree runs too early to create any directories needed in /tmp,
# so if /var/tmp == /tmp, then you don't get a vi.recover.
#
if [ ! -h /tmp ]; then
if [ ! -L /tmp ]; then
mount_md ${tmpsize:=64m} /tmp 2
chmod 01777 /tmp
fi

View File

@ -37,7 +37,7 @@ syslogd_precmd()
{
# Transitional symlink for old binaries
#
if [ ! -h /dev/log ]; then
if [ ! -L /dev/log ]; then
ln -sf /var/run/log /dev/log
fi
rm -f /var/run/log

View File

@ -103,7 +103,7 @@ fi
# XXX: mtree runs too early to create any directories needed in /tmp,
# so if /var/tmp == /tmp, then you don't get a vi.recover.
#
if [ ! -h /tmp ]; then
if [ ! -L /tmp ]; then
mount_md ${tmpsize:=64m} /tmp 2
chmod 01777 /tmp
fi

View File

@ -103,7 +103,7 @@ fi
# XXX: mtree runs too early to create any directories needed in /tmp,
# so if /var/tmp == /tmp, then you don't get a vi.recover.
#
if [ ! -h /tmp ]; then
if [ ! -L /tmp ]; then
mount_md ${tmpsize:=64m} /tmp 2
chmod 01777 /tmp
fi

View File

@ -94,7 +94,7 @@ fi
# XXX: mtree runs too early to create any directories needed in /tmp,
# so if /var/tmp == /tmp, then you don't get a vi.recover.
#
if [ ! -h /tmp ]; then
if [ ! -L /tmp ]; then
mount_md ${tmpsize:=64m} /tmp 2
chmod 01777 /tmp
fi

View File

@ -84,7 +84,7 @@ INCSLINKS+= posix4/$i ${INCLUDEDIR}/$i
copies:
.for i in ${LDIRS} ${LSYMSUBDIRS} machine
if [ -h ${DESTDIR}/usr/include/$i ]; then \
if [ -L ${DESTDIR}/usr/include/$i ]; then \
rm -f ${DESTDIR}/usr/include/$i; \
fi
.endfor

View File

@ -262,7 +262,7 @@ beforeinstall: ${SHARED} etc-examples
copies:
.for i in ${LDIRS}
if [ -h ${DESTDIR}${BINDIR}/$i ]; then \
if [ -L ${DESTDIR}${BINDIR}/$i ]; then \
rm -f ${DESTDIR}${BINDIR}/$i; \
fi
.endfor

View File

@ -88,7 +88,7 @@ move_if_aout ( )
do
# Don't touch symbolic links yet. It's not clear how
# they should be handled.
if test -h $file; then
if test -L $file; then
else
# Check that this is a normal file.
if test -f $file; then