From ce9429943b31a57fde286a7e05b52edba0f1605a Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 28 Sep 1994 18:31:04 +0000 Subject: Comment out loop which handled symbolic links to files From-SVN: r8155 --- gcc/fixincludes | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) (limited to 'gcc') diff --git a/gcc/fixincludes b/gcc/fixincludes index ae7e184..c808fd8 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -1763,20 +1763,23 @@ if [ -r ${LIB}/$file ]; then fi fi -if $LINKS; then - echo 'Making internal symbolic non-directory links' - cd ${INPUT} - files=`find . -type l -print` - for file in $files; do - dest=`ls -ld $file | sed -n 's/.*-> //p'` - if expr "$dest" : '[^/].*' > /dev/null; then - target=${LIB}/`echo file | sed "s|[^/]*\$|$dest|"` - if [ -f $target ]; then - ln -s $dest ${LIB}/$file >/dev/null 2>&1 - fi - fi - done -fi +# This loop does not appear to do anything, because it uses file +# rather than $file when setting target. It also appears to be +# unnecessary, since the main loop processes symbolic links. +#if $LINKS; then +# echo 'Making internal symbolic non-directory links' +# cd ${INPUT} +# files=`find . -type l -print` +# for file in $files; do +# dest=`ls -ld $file | sed -n 's/.*-> //p'` +# if expr "$dest" : '[^/].*' > /dev/null; then +# target=${LIB}/`echo file | sed "s|[^/]*\$|$dest|"` +# if [ -f $target ]; then +# ln -s $dest ${LIB}/$file >/dev/null 2>&1 +# fi +# fi +# done +#fi # Make sure that any include files referenced using double quotes # exist in the fixed directory. This comes last since otherwise -- cgit v1.1