diff options
author | Richard Stallman <rms@gnu.org> | 1993-01-07 00:31:40 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-01-07 00:31:40 +0000 |
commit | 160faa076c8c48d724cdbf18556c74f4631421da (patch) | |
tree | 211654d15a0672a479095715586777d508cd737d /gcc/fixinc.sco | |
parent | b7526ea509abf31774a6a99e8ead135c01da1e22 (diff) | |
download | gcc-160faa076c8c48d724cdbf18556c74f4631421da.zip gcc-160faa076c8c48d724cdbf18556c74f4631421da.tar.gz gcc-160faa076c8c48d724cdbf18556c74f4631421da.tar.bz2 |
Don't "make LIB absolute" if already absolute,
to avoid problems with the automounter.
From-SVN: r3137
Diffstat (limited to 'gcc/fixinc.sco')
-rwxr-xr-x | gcc/fixinc.sco | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gcc/fixinc.sco b/gcc/fixinc.sco index c28039d..ad84989 100755 --- a/gcc/fixinc.sco +++ b/gcc/fixinc.sco @@ -58,8 +58,15 @@ fi ORIG_DIR=`pwd` -# Make LIB absolute. -cd $LIB; LIB=`pwd` +# Make LIB absolute if it is relative. +# Don't do this if not necessary, since may screw up automounters. +case $LIB in +/*) + ;; +*) + cd $LIB; LIB=`${PWDCMD}` + ;; +esac echo 'Building fixincludes in ' ${LIB} |