Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 May 2010 16:41:14 +0000 (UTC)
From:      Ken Smith <kensmith@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
Subject:   svn commit: r207661 - stable/7/release
Message-ID:  <201005051641.o45GfEFo004434@svn.freebsd.org>

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



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