Check for symlinks being available in /tmp.

From-SVN: r4899
This commit is contained in:
Richard Stallman 1993-07-10 19:06:09 +00:00
parent c270f7968a
commit 0fa2faf052
1 changed files with 3 additions and 0 deletions

View File

@ -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