svn commit: r267308 - user/nwhitehorn/condorports

Nathan Whitehorn nwhitehorn at FreeBSD.org
Mon Jun 9 22:09:04 UTC 2014


Author: nwhitehorn
Date: Mon Jun  9 22:09:03 2014
New Revision: 267308
URL: http://svnweb.freebsd.org/changeset/base/267308

Log:
  Reduce scope of CLEAN_FETCH_ENV so that pkg gets included in the
  dependency tree to ship with the build.

Modified:
  user/nwhitehorn/condorports/stagebuildfiles.sh

Modified: user/nwhitehorn/condorports/stagebuildfiles.sh
==============================================================================
--- user/nwhitehorn/condorports/stagebuildfiles.sh	Mon Jun  9 21:35:36 2014	(r267307)
+++ user/nwhitehorn/condorports/stagebuildfiles.sh	Mon Jun  9 22:09:03 2014	(r267308)
@@ -17,12 +17,11 @@ export PORT_DBDIR=/var/empty
 export PORTSDIR=$7
 export PACKAGE_BUILDING=1
 export LOCALBASE=/var/empty
-export CLEAN_FETCH_ENV=1
 
 # Fetch distfiles if unfetched
 cd $1
-make -d e -DBATCH checksum DISTDIR=$DISTHORDE
-make -d e -DBATCH package-links PACKAGES=$2
+make -d e -DBATCH checksum DISTDIR=$DISTHORDE CLEAN_FETCH_ENV=1
+make -d e -DBATCH package-links PACKAGES=$2 CLEAN_FETCH_ENV=1
 mkdir -p $2/All
 
 # Make a tarball containing all the bits we need to build: the distfiles, 


More information about the svn-src-user mailing list