diff options
author | ru <ru@FreeBSD.org> | 2002-10-01 13:29:45 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-10-01 13:29:45 +0000 |
commit | ec9540417c9773b979c0b006f762db25255128ec (patch) | |
tree | 1547bd1d0f16073194e852bff171ee4908d6626c /tools | |
parent | 16e3d2e21ed5d78f84df0e65bd08418447a5c8ef (diff) | |
download | FreeBSD-src-ec9540417c9773b979c0b006f762db25255128ec.zip FreeBSD-src-ec9540417c9773b979c0b006f762db25255128ec.tar.gz |
test -h is deprecated; use -L instead.
PR: bin/40846
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/tools/upgrade/move_aout_libs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tools/upgrade/move_aout_libs.sh b/tools/tools/upgrade/move_aout_libs.sh index b00af52..e525200 100755 --- a/tools/tools/upgrade/move_aout_libs.sh +++ b/tools/tools/upgrade/move_aout_libs.sh @@ -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 |