svn commit: r313035 - head/ports-mgmt/pkg

Baptiste Daroussin bapt at FreeBSD.org
Wed Feb 27 07:05:53 UTC 2013


Author: bapt
Date: Wed Feb 27 07:05:52 2013
New Revision: 313035
URL: http://svnweb.freebsd.org/changeset/ports/313035

Log:
  pkg uses /usr/share/mk/* framwork to build, so it can be tuned via
  make.conf/src.conf which is something we don't want when building from the ports
  tree.
  
  Make sure to ignore make.conf and src.conf when building.
  
  Reported by:	kargl@
  Tested by:	kargl@

Modified:
  head/ports-mgmt/pkg/Makefile

Modified: head/ports-mgmt/pkg/Makefile
==============================================================================
--- head/ports-mgmt/pkg/Makefile	Wed Feb 27 05:50:20 2013	(r313034)
+++ head/ports-mgmt/pkg/Makefile	Wed Feb 27 07:05:52 2013	(r313035)
@@ -20,7 +20,7 @@ NO_CCACHE=	yes
 USE_LDCONFIG=	yes
 MANCOMPRESSED=	yes
 
-MAKE_ENV+=	WITHOUT_PROFILE=yes
+MAKE_ENV+=	WITHOUT_PROFILE=yes __MAKE_CONF=/dev/null SRCCONF=/dev/null
 USE_STAGE=	yes
 
 MAN8=	pkg.8 \


More information about the svn-ports-head mailing list