diff options
author | asami <asami@FreeBSD.org> | 1997-05-10 07:42:43 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1997-05-10 07:42:43 +0800 |
commit | ef79e180dfc760d068a51c00090a6195cb1084ab (patch) | |
tree | 9bb47871db1f3960ce01c22df85d933c7f7a0c28 | |
parent | 82d52e2c6e0feb1208f7a14751969c6491097380 (diff) | |
download | freebsd-ports-gnome-ef79e180dfc760d068a51c00090a6195cb1084ab.tar.gz freebsd-ports-gnome-ef79e180dfc760d068a51c00090a6195cb1084ab.tar.zst freebsd-ports-gnome-ef79e180dfc760d068a51c00090a6195cb1084ab.zip |
No need to use += for CONFIGURE_ENV here. Remember, bsd.port.mk is
included at the end of the Makefile.
-rw-r--r-- | games/dontspace/Makefile | 4 | ||||
-rw-r--r-- | games/klondike/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/games/dontspace/Makefile b/games/dontspace/Makefile index 2bdf10e73b20..50aa43cc77f9 100644 --- a/games/dontspace/Makefile +++ b/games/dontspace/Makefile @@ -3,7 +3,7 @@ # Date created: 26-Apr-97 # Whom: johnh@isi.edu # -# $Id: Makefile,v 1.1.1.1 1997/05/07 07:44:38 tg Exp $ +# $Id: Makefile,v 1.2 1997/05/09 09:31:07 tg Exp $ # DISTNAME= dontspace-1.2 @@ -17,7 +17,7 @@ RUN_DEPENDS= wish4.1:${PORTSDIR}/x11/tk41 GNU_CONFIGURE= Yes CONFIGURE_ARGS= --bindir=${PREFIX}/bin --datadir=${PREFIX}/share/games \ --mandir=${PREFIX}/man -CONFIGURE_ENV+= WISHX=${PREFIX}/bin/wish4.1 +CONFIGURE_ENV= WISHX=${PREFIX}/bin/wish4.1 MAN6= dontspace.6 .include <bsd.port.mk> diff --git a/games/klondike/Makefile b/games/klondike/Makefile index 5dfdff2f416a..381c544da9b5 100644 --- a/games/klondike/Makefile +++ b/games/klondike/Makefile @@ -3,7 +3,7 @@ # Date created: 26-Apr-97 # Whom: johnh@isi.edu # -# $Id: Makefile,v 1.2 1997/05/07 07:47:00 tg Exp $ +# $Id: Makefile,v 1.3 1997/05/09 09:31:08 tg Exp $ # DISTNAME= klondike-1.8 @@ -17,7 +17,7 @@ RUN_DEPENDS= wish4.1:${PORTSDIR}/x11/tk41 GNU_CONFIGURE= Yes CONFIGURE_ARGS= --bindir=${PREFIX}/bin --datadir=${PREFIX}/share/games \ --mandir=${PREFIX}/man -CONFIGURE_ENV+= WISHX=${PREFIX}/bin/wish4.1 +CONFIGURE_ENV= WISHX=${PREFIX}/bin/wish4.1 MAN6= klondike.6 .include <bsd.port.mk> |