diff options
author | Richard Stallman <rms@gnu.org> | 1993-07-10 19:06:09 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-07-10 19:06:09 +0000 |
commit | 0fa2faf052c6bc0d2a29d86507ccb3f9f9c505df (patch) | |
tree | f23a45fa5726d72ef56914003ff14a514232990f | |
parent | c270f7968a1dda31b4a5de67dcdb67aca4bc75e6 (diff) | |
download | gcc-0fa2faf052c6bc0d2a29d86507ccb3f9f9c505df.zip gcc-0fa2faf052c6bc0d2a29d86507ccb3f9f9c505df.tar.gz gcc-0fa2faf052c6bc0d2a29d86507ccb3f9f9c505df.tar.bz2 |
Check for symlinks being available in /tmp.
From-SVN: r4899
-rwxr-xr-x | gcc/fixincludes | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/fixincludes b/gcc/fixincludes index 51616e4..ac031c4 100755 --- a/gcc/fixincludes +++ b/gcc/fixincludes @@ -66,6 +66,9 @@ echo Building fixed headers in ${LIB} if ln -s X $LIB/ShouldNotExist 2>/dev/null; then rm -f $LIB/ShouldNotExist LINKS=true +elif ln -s X /tmp/ShouldNotExist 2>/dev/null; then + rm -f /tmp/ShouldNotExist + LINKS=true else LINKS=false fi |