svn commit: r375202 - head/devel/powerpc64-gcc
Ian Lepore
ian at FreeBSD.org
Sun Dec 21 23:52:02 UTC 2014
Author: ian (src committer)
Date: Sun Dec 21 23:52:01 2014
New Revision: 375202
URL: https://svnweb.freebsd.org/changeset/ports/375202
QAT: https://qat.redports.org/buildarchive/r375202/
Log:
Conditionally assign variables so that slave ports can override them.
Approved by: imp
Modified:
head/devel/powerpc64-gcc/Makefile
Modified: head/devel/powerpc64-gcc/Makefile
==============================================================================
--- head/devel/powerpc64-gcc/Makefile Sun Dec 21 23:40:20 2014 (r375201)
+++ head/devel/powerpc64-gcc/Makefile Sun Dec 21 23:52:01 2014 (r375202)
@@ -2,7 +2,7 @@
PORTNAME= gcc
PORTVERSION= 4.9.1
-PORTREVISION= 1
+PORTREVISION?= 1
CATEGORIES= devel
MASTER_SITES= GCC
MASTER_SITE_SUBDIR= releases/gcc-${DISTVERSION}
@@ -41,7 +41,7 @@ EXTRA_PATCHES+= ${FILESDIR}/freebsd-form
.endif
GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --target=${GCC_TARGET} --disable-nls --enable-languages=c,c++ \
+CONFIGURE_ARGS+=--target=${GCC_TARGET} --disable-nls --enable-languages=c,c++ \
--without-headers \
--with-gmp=${LOCALBASE} \
--with-pkgversion="FreeBSD Ports Collection for ${PKGNAMEPREFIX:C/-//g}" \
@@ -51,8 +51,8 @@ CONFIGURE_ARGS= --target=${GCC_TARGET} -
CONFIGURE_SCRIPT= ../${PORTNAME}-${PORTVERSION}/configure
-ALL_TARGET= all-gcc
-INSTALL_TARGET= install-gcc
+ALL_TARGET?= all-gcc
+INSTALL_TARGET?= install-gcc
.include <bsd.port.options.mk>
More information about the svn-ports-all
mailing list