Replaced references to /usr/tmp with references to /tmp.

This commit is contained in:
dtrg
2005-06-24 22:08:47 +00:00
parent 70ef6fe52e
commit 9bc8c07deb
8 changed files with 14 additions and 21 deletions

View File

@@ -18,14 +18,7 @@ else
fi
export E_FLAG E_SFX
echo check write-ability of /tmp and /usr/tmp ...
if ( >/usr/tmp/aaax.$$ )
then
rm /usr/tmp/aaax.$$
else
echo /usr/tmp must exist and be writable.
exit 2
fi
echo check write-ability of /tmp ...
if ( >/tmp/aaax.$$ )
then
rm /tmp/aaax.$$
@@ -33,7 +26,7 @@ else
echo /tmp must exist and be writable.
exit 2
fi
echo "/tmp and /usr/tmp ok"
echo "/tmp ok"
if [ -f macros ]
then