svn commit: r212173 - head/tools/tools/sysbuild

Poul-Henning Kamp phk at FreeBSD.org
Fri Sep 3 09:34:15 UTC 2010


Author: phk
Date: Fri Sep  3 09:34:15 2010
New Revision: 212173
URL: http://svn.freebsd.org/changeset/base/212173

Log:
  We need to copy the ports config files before we launch the prefetch

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

Modified: head/tools/tools/sysbuild/sysbuild.sh
==============================================================================
--- head/tools/tools/sysbuild/sysbuild.sh	Fri Sep  3 08:07:04 2010	(r212172)
+++ head/tools/tools/sysbuild/sysbuild.sh	Fri Sep  3 09:34:15 2010	(r212173)
@@ -410,6 +410,9 @@ if [ "x${REMOTEDISTFILES}" != "x" ] ; th
 	mount  ${REMOTEDISTFILES} /freebsd/distfiles
 fi
 
+log_it copy ports config files
+(cd / ; find var/db/ports -print | cpio -dumpv /mnt )
+
 log_it "Start prefetch of ports distfiles"
 ports_prefetch &
 
@@ -483,9 +486,6 @@ if [ -f /etc/localtime ] ; then
 	cp /etc/localtime /mnt/etc
 fi
 
-log_it copy ports config files
-(cd / ; find var/db/ports -print | cpio -dumpv /mnt )
-
 log_it ldconfig in chroot
 chroot /mnt sh /etc/rc.d/ldconfig start
 


More information about the svn-src-all mailing list