Various compile fixes.

Imported gzip.

Changed setup script not to insist cwd is / when running from cd.
This commit is contained in:
Ben Gras
2005-06-17 13:42:53 +00:00
parent 47474b6341
commit f81ac6ae5c
8 changed files with 17 additions and 23 deletions

View File

@@ -82,11 +82,15 @@ esac
# Installing Minix on the hard disk.
# Must be in / or we can't mount or umount.
case "`pwd`" in
/?*)
echo "Please type 'cd /' first, you are locking up `pwd`" >&2
exit 1
esac
if [ ! -f /CD ]
then
case "`pwd`" in
/?*)
echo "Please type 'cd /' first, you are locking up `pwd`" >&2
exit 1
esac
fi
case "$0" in
/tmp/*)
rm -f "$0"