]> Zhao Yanbai Git Server - minix.git/commitdiff
. forget obsolete /usr/local/bin in $PATH R3.1.8 v3.1.8
authorBen Gras <ben@minix3.org>
Mon, 20 Sep 2010 11:08:21 +0000 (11:08 +0000)
committerBen Gras <ben@minix3.org>
Mon, 20 Sep 2010 11:08:21 +0000 (11:08 +0000)
  . update release.sh's notion of where packages are
  . update release.sh's notion of how many files are on root
    as -xdev won't work anymore to separate /usr from /

tools/release.sh

index d24080b0b3f5258d3f7d8961e75382ebdd6f4c9b..6df4e30e24bb499f868aa711a7aa7cdcbd8c8cb4 100755 (executable)
@@ -2,12 +2,10 @@
 
 set -e
 
-PATH=$PATH:/usr/local/bin
-
 XBIN=usr/xbin
 SRC=src
 
-PACKAGEDIR=/usr/pkgsrc/packages
+PACKAGEDIR=/usr/pkgsrc/packages/`uname -r`/`uname -m`
 # List of packages included on installation media
 PACKAGELIST=packages.install
 secs=`expr 32 '*' 64`
@@ -429,7 +427,7 @@ fi
 echo " * Counting files"
 extrakb=`du -s $RELEASEDIR/usr/install | awk '{ print $1 }'`
 find $RELEASEDIR/usr | fgrep -v /install/ | wc -l >$RELEASEDIR/.usrfiles
-find $RELEASEDIR -xdev | wc -l >$RELEASEDIR/.rootfiles
+find $RELEASEDIR -print -path $RELEASEDIR/usr -prune | wc -l >$RELEASEDIR/.rootfiles
 
 echo " * Writing fstab"
 if [ "$USB" -ne 0 ]