*** empty log message ***

This commit is contained in:
Ben Gras 2005-09-12 15:44:05 +00:00
parent b42ee4a0e1
commit e0f3b60398
2 changed files with 8 additions and 1 deletions

View file

@ -14,6 +14,9 @@ cd /usr/src || exit 1
make clean
# Let man find the manpages
makewhatis /usr/man
makewhatis /usr/gnu/man
makewhatis /usr/local/man
mv /usr/src/commands /usr/src.commands
mv /usr/src/contrib /usr/src.contrib
exit 0

View file

@ -58,6 +58,7 @@ IMAGE=cdfdimage
ROOTIMAGE=rootimage
CDFILES=/usr/tmp/cdreleasefiles
sh tell_config OS_RELEASE . OS_VERSION >/tmp/rel.$$
version_pretty=`sed 's/[" ]//g;/^$/d' </tmp/rel.$$`
version=`sed 's/[" ]//g;/^$/d' </tmp/rel.$$ | tr . _`
ISO=minix${version}.iso
ISOGZ=${ISO}.gz
@ -222,8 +223,11 @@ then
read xyzzy
fi
df $TMPDISK | tail -1 | awk '{ print $4 }' >$RELEASEDIR/.usrkb
echo $version_pretty >$RELEASEDIR/etc/version
echo " * Counting files"
df $TMPDISK | tail -1 | awk '{ print $4 }' >$RELEASEDIR/.usrkb
du -s $RELEASEDIR/usr/src.* | awk '{ t += $1 } END { print t }' >$RELEASEDIR/.extrasrckb
( for d in $RELEASEDIR/usr/src.*; do find $d; done) | wc -l >$RELEASEDIR/.extrasrcfiles
find $RELEASEDIR/usr | wc -l >$RELEASEDIR/.usrfiles
find $RELEASEDIR -xdev | wc -l >$RELEASEDIR/.rootfiles
umount $TMPDISK || exit