diff options
author | hubertf <hubertf@pkgsrc.org> | 1997-12-22 07:52:00 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1997-12-22 07:52:00 +0000 |
commit | 809d8e2067382f06462ab884df1a1823931f390d (patch) | |
tree | 1f5e17daf8c1e4677c984a9270e3772354e3f9a8 | |
parent | 8639bafeaa485cc1edbbeb6e2ce7d43ab384150b (diff) | |
download | pkgsrc-809d8e2067382f06462ab884df1a1823931f390d.tar.gz |
Fix setting CONFIGURE_ENV ("=" -> "+=")
-rw-r--r-- | devel/autoconf/Makefile | 4 | ||||
-rw-r--r-- | devel/automake/Makefile | 4 | ||||
-rw-r--r-- | net/socks5/Makefile | 4 | ||||
-rw-r--r-- | x11/lesstif/Makefile | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/devel/autoconf/Makefile b/devel/autoconf/Makefile index e8c0bed27a9..9c8d2bb4674 100644 --- a/devel/autoconf/Makefile +++ b/devel/autoconf/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 1997/11/13 14:37:24 hubertf Exp $ +# $NetBSD: Makefile,v 1.5 1997/12/22 07:52:00 hubertf Exp $ # New ports collection makefile for: autoconf # Version required: 2.12 # Date created: 7 October 1995 @@ -16,7 +16,7 @@ RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 MAINTAINER= torstenb@FreeBSD.ORG GNU_CONFIGURE= yes -CONFIGURE_ENV= M4=${PREFIX}/bin/gm4 +CONFIGURE_ENV+= M4=${PREFIX}/bin/gm4 OPSYS!= uname -s diff --git a/devel/automake/Makefile b/devel/automake/Makefile index 395ae5818d2..55e697849b1 100644 --- a/devel/automake/Makefile +++ b/devel/automake/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 1997/11/13 14:37:31 hubertf Exp $ +# $NetBSD: Makefile,v 1.5 1997/12/22 07:52:01 hubertf Exp $ # New ports collection makefile for: automake # Version required: 1.2 # Date created: 15 March 1997 @@ -14,7 +14,7 @@ MASTER_SITES= ${MASTER_SITE_GNU} MAINTAINER= fujimoto@oscar.elec.waseda.ac.jp GNU_CONFIGURE= yes -CONFIGURE_ENV= PERL=${PREFIX}/bin/perl +CONFIGURE_ENV+= PERL=${PREFIX}/bin/perl STRIP= # none OPSYS!= uname -s diff --git a/net/socks5/Makefile b/net/socks5/Makefile index dcae77e637e..41c90bf6291 100644 --- a/net/socks5/Makefile +++ b/net/socks5/Makefile @@ -3,7 +3,7 @@ # Date created: 24 Apr 1996 # Whom: pst # -# $NetBSD: Makefile,v 1.4 1997/12/22 07:45:50 hubertf Exp $ +# $NetBSD: Makefile,v 1.5 1997/12/22 07:52:02 hubertf Exp $ # FreeBSD Id: Makefile,v 1.14 1997/08/28 06:49:06 obrien Exp # @@ -29,7 +29,7 @@ RESTRICTED= "no commercial use" WRKSRC= ${WRKDIR}/socks5-v1.0r2 GNU_CONFIGURE= yes -CONFIGURE_ENV= LIBS=-lcrypt +CONFIGURE_ENV+= LIBS=-lcrypt CONFIGURE_ARGS= --with-libconffile=${PREFIX}/etc/libsocks5.conf \ --with-srvconffile=${PREFIX}/etc/socks5.conf \ --with-srvpidfile=/var/run/socks5.pid \ diff --git a/x11/lesstif/Makefile b/x11/lesstif/Makefile index b410ffec2ee..1f9d1b3fe8a 100644 --- a/x11/lesstif/Makefile +++ b/x11/lesstif/Makefile @@ -3,7 +3,7 @@ # Date created: December 10, 1996 # Whom: 1wardd@airmail.net # -# $NetBSD: Makefile,v 1.3 1997/12/19 09:24:03 hubertf Exp $ +# $NetBSD: Makefile,v 1.4 1997/12/22 07:52:03 hubertf Exp $ # FreeBSD Id: Makefile,v 1.13 1997/09/08 08:34:13 tg Exp # @@ -19,7 +19,7 @@ MAINTAINER= ports@FreeBSD.org GNU_CONFIGURE= yes USE_X11= yes # change this and remove the strip statement in post-install for debugging -CONFIGURE_ENV= CCFLAGS="-O -pipe" +CONFIGURE_ENV+= CCFLAGS="-O -pipe" .if defined(HAVE_MOTIF) IS_INTERACTIVE= yes |