svn commit: r374414 - head/Mk

Johannes Jost Meixner xmj at FreeBSD.org
Tue Dec 9 17:44:31 UTC 2014


Author: xmj
Date: Tue Dec  9 17:44:30 2014
New Revision: 374414
URL: https://svnweb.freebsd.org/changeset/ports/374414
QAT: https://qat.redports.org/buildarchive/r374414/

Log:
  Force PREFIX to LINUXBASE
  
  Using pkg with linux packages will generate conflicts with non-linux ports if
  PREFIX is set in make.conf. If USE_LINUX_PREFIX is defined, force PREFIX to
  LINUXBASE, which can be overridden separately.
  
  Approved by:    koobs, swills (mentors)
  Approved by:    portmgr (swills)

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Tue Dec  9 17:37:50 2014	(r374413)
+++ head/Mk/bsd.port.mk	Tue Dec  9 17:44:30 2014	(r374414)
@@ -1402,7 +1402,7 @@ SCRIPTDIR?=		${MASTERDIR}/scripts
 PKGDIR?=		${MASTERDIR}
 
 .if defined(USE_LINUX_PREFIX)
-PREFIX?=		${LINUXBASE}
+PREFIX:=		${LINUXBASE}
 NO_MTREE=		yes
 .else
 PREFIX?=		${LOCALBASE}


More information about the svn-ports-head mailing list