svn commit: r301716 - head/release

Colin Percival cperciva at FreeBSD.org
Thu Jun 9 03:54:26 UTC 2016


Author: cperciva
Date: Thu Jun  9 03:54:25 2016
New Revision: 301716
URL: https://svnweb.freebsd.org/changeset/base/301716

Log:
  Add 'env - PATH=$$PATH' to bsdec2-image-upload make command, in order to
  avoid environment pollution problems.  That port uses <bsd.prog.mk> but
  is not compatible with the latest mk bits in HEAD.
  
  Reported by:	gjb
  No rush, but make sure it's in the tree before tomorrow by:	gjb

Modified:
  head/release/Makefile.ec2

Modified: head/release/Makefile.ec2
==============================================================================
--- head/release/Makefile.ec2	Thu Jun  9 02:21:07 2016	(r301715)
+++ head/release/Makefile.ec2	Thu Jun  9 03:54:25 2016	(r301716)
@@ -23,7 +23,7 @@ CW_EC2_PORTINSTALL=
 
 cw-ec2-portinstall:
 .if exists(${PORTSDIR}/net/bsdec2-image-upload/Makefile)
-	make -C ${PORTSDIR}/net/bsdec2-image-upload BATCH=1 all install clean
+	env - PATH=$$PATH make -C ${PORTSDIR}/net/bsdec2-image-upload BATCH=1 all install clean
 .else
 . if !exists(/usr/local/sbin/pkg-static)
 	env ASSUME_ALWAYS_YES=yes pkg bootstrap -y


More information about the svn-src-head mailing list