Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Dec 2014 17:44:31 +0000 (UTC)
From:      Johannes Jost Meixner <xmj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r374414 - head/Mk
Message-ID:  <201412091744.sB9HiVV9095586@svn.freebsd.org>

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



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