Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Sep 2010 09:34:15 +0000 (UTC)
From:      Poul-Henning Kamp <phk@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r212173 - head/tools/tools/sysbuild
Message-ID:  <201009030934.o839YFeP039520@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201009030934.o839YFeP039520>