svn commit: r207661 - stable/7/release

Ken Smith kensmith at FreeBSD.org
Wed May 5 16:41:15 UTC 2010


Author: kensmith
Date: Wed May  5 16:41:14 2010
New Revision: 207661
URL: http://svn.freebsd.org/changeset/base/207661

Log:
  Merge r206422:
  
  > Pass the HTTP_PROXY and FTP_PROXY environment variables through in addition
  > to FTP_PASSIVE_MODE so release building works for a machine that needs
  > to use a proxy.
  
  PR:           misc/137688
  Submitted by: Michael Leun

Modified:
  stable/7/release/Makefile
Directory Properties:
  stable/7/release/   (props changed)
  stable/7/release/doc/   (props changed)
  stable/7/release/doc/en_US.ISO8859-1/hardware/   (props changed)

Modified: stable/7/release/Makefile
==============================================================================
--- stable/7/release/Makefile	Wed May  5 16:25:57 2010	(r207660)
+++ stable/7/release/Makefile	Wed May  5 16:41:14 2010	(r207661)
@@ -576,7 +576,7 @@ release rerelease:
 	echo "	for i in ${MAKEINDEXPORTS}"	>> ${_MK}
 	echo "	do"			>> ${_MK}
 	echo "		cd /usr/ports/\$${i}"	>> ${_MK}
-	echo "		env -i FTP_PASSIVE_MODE=$${FTP_PASSIVE_MODE:-no} PATH=$${PATH} \\" >> ${_MK}
+	echo "		env -i HTTP_PROXY=$${HTTP_PROXY} FTP_PROXY=$${FTP_PROXY} FTP_PASSIVE_MODE=$${FTP_PASSIVE_MODE:-no} PATH=$${PATH} \\" >> ${_MK}
 	echo "		make all install clean BATCH=yes FORCE_PKG_REGISTER=yes" >> ${_MK}
 	echo "	done"				>> ${_MK}
 	echo "	cd /usr/ports"			>> ${_MK}


More information about the svn-src-all mailing list