diff options
author | rafal <rafal> | 2003-07-03 04:25:27 +0000 |
---|---|---|
committer | rafal <rafal> | 2003-07-03 04:25:27 +0000 |
commit | 881d391d6609180947f466ab862bfae34f59c2f3 (patch) | |
tree | 84fc437ef2e9d49053230452260521d3188df5ee /lang | |
parent | 034c31784e08e030eac0530861a1f8fda360a57e (diff) | |
download | pkgsrc-881d391d6609180947f466ab862bfae34f59c2f3.tar.gz |
Don't stomp prefix settings by overwriting CONFIGURE_ARGS (+= instead of =).
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gcc3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/gcc3/Makefile b/lang/gcc3/Makefile index e6c0fee12a8..403a2578788 100644 --- a/lang/gcc3/Makefile +++ b/lang/gcc3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.24 2003/07/02 19:34:22 drochner Exp $ +# $NetBSD: Makefile,v 1.25 2003/07/03 04:25:27 rafal Exp $ # DISTNAME= gcc-3.3 @@ -36,7 +36,7 @@ INFO_FILES= cpp.info g77.info gcc.info gcj.info .include "../../mk/bsd.prefs.mk" .if ${OPSYS} == "NetBSD" && exists(/usr/include/pthread.h) -CONFIGURE_ARGS= --host=${MACHINE_GNU_ARCH}--netbsdelf2.0 +CONFIGURE_ARGS+= --host=${MACHINE_GNU_ARCH}--netbsdelf2.0 PTHREAD_OPTS+= require native .include "../../mk/pthread.buildlink2.mk" CPPFLAGS+= -I${BUILDLINK_DIR}/include |