Author: phk
Date: Tue Nov 23 20:47:39 2010
New Revision: 215767
URL: http://svn.freebsd.org/changeset/base/215767
Log:
  Optimize the ports recurser a bit more.

Modified:
  head/tools/tools/sysbuild/sysbuild.sh

Modified: head/tools/tools/sysbuild/sysbuild.sh
==============================================================================
--- head/tools/tools/sysbuild/sysbuild.sh       Tue Nov 23 20:46:06 2010        
(r215766)
+++ head/tools/tools/sysbuild/sysbuild.sh       Tue Nov 23 20:47:39 2010        
(r215767)
@@ -185,6 +185,8 @@ ports_recurse() (
                fi
                if grep -q "^$d\$" /tmp/_.plist ; then
                        true
+               elif grep -q "^$d\$" /tmp/_.plist.tdone ; then
+                       true
                else
                        (
                        cd $d
@@ -438,7 +440,7 @@ if [ "x${REMOTEDISTFILES}" != "x" ] ; th
 fi
 
 log_it copy ports config files
-(cd / ; find var/db/ports -print | cpio -dumpv /mnt )
+(cd / ; find var/db/ports -print | cpio -dumpv /mnt > /dev/null 2>&1)
 
 log_it "Start prefetch of ports distfiles"
 ports_prefetch &
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to