svn commit: r485839 - head/lang/gcc8

Gerald Pfeifer gerald at FreeBSD.org
Sun Nov 25 01:28:06 UTC 2018


Author: gerald
Date: Sun Nov 25 01:28:04 2018
New Revision: 485839
URL: https://svnweb.freebsd.org/changeset/ports/485839

Log:
  Merge r479405 | mat | 2018-09-10 from lang/gcc8-devel to lang/gcc8 as well:
  
    After an include, PLIST_SUB must be appended to, not overwritten.
  
    If it is overwritten, many values will be clobbered, and
    pain will ensue.
  
  PR:		230864
  Reviewed by:	mat

Modified:
  head/lang/gcc8/Makefile

Modified: head/lang/gcc8/Makefile
==============================================================================
--- head/lang/gcc8/Makefile	Sun Nov 25 00:24:35 2018	(r485838)
+++ head/lang/gcc8/Makefile	Sun Nov 25 01:28:04 2018	(r485839)
@@ -95,7 +95,7 @@ CONFIGURE_ARGS+=--disable-nls \
 		--with-system-zlib
 MAKE_ARGS+=	MAKEINFOFLAGS="--no-split"
 USE_LDCONFIG=	${TARGLIB}
-PLIST_SUB=	GCC_VERSION=${GCC_VERSION} \
+PLIST_SUB+=	GCC_VERSION=${GCC_VERSION} \
 		GNU_HOST=${CONFIGURE_TARGET} \
 		SUFFIX=${SUFFIX}
 INFO=		gcc${SUFFIX}/cpp \


More information about the svn-ports-all mailing list