svn commit: r349537 - head/Mk

Antoine Brodin antoine at FreeBSD.org
Sat Mar 29 15:14:16 UTC 2014


Author: antoine
Date: Sat Mar 29 15:14:16 2014
New Revision: 349537
URL: http://svnweb.freebsd.org/changeset/ports/349537
QAT: https://qat.redports.org/buildarchive/r349537/

Log:
  In the DEBUG case, do not assign INSTALL_TARGET if it is not defined
  
  With hat:	portmgr

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Sat Mar 29 15:10:49 2014	(r349536)
+++ head/Mk/bsd.port.mk	Sat Mar 29 15:14:16 2014	(r349537)
@@ -1597,8 +1597,10 @@ MAKE_ENV+=	DONTSTRIP=yes
 STRIP_CMD=	${TRUE}
 DEBUG_FLAGS?=	-g
 CFLAGS:=		${CFLAGS:N-O*:N-fno-strict*} ${DEBUG_FLAGS}
+.if defined(INSTALL_TARGET)
 INSTALL_TARGET:=	${INSTALL_TARGET:S/^install-strip$/install/g}
 .endif
+.endif
 
 .if defined(WITH_SSP) || defined(WITH_SSP_PORTS)
 .include "${PORTSDIR}/Mk/bsd.ssp.mk"


More information about the svn-ports-head mailing list