diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-06-08 00:15:43 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-06-08 00:15:43 +0000 |
commit | 8b87ca1e645ca5ddc6ebbd6bf2033e60d12a2fb8 (patch) | |
tree | 8796956c3b8af85fb4eeeffca2c4ef55498c5652 | |
parent | Put a copy of the distfile in my home directory until (diff) |
No need to use "+=" to define a variable that appears only once....
Notes
Notes:
svn path=/head/; revision=11339
-rw-r--r-- | devel/ncurses-devel/Makefile | 6 | ||||
-rw-r--r-- | devel/ncurses/Makefile | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/devel/ncurses-devel/Makefile b/devel/ncurses-devel/Makefile index a7ae32391518..137f9a7dbfb6 100644 --- a/devel/ncurses-devel/Makefile +++ b/devel/ncurses-devel/Makefile @@ -3,7 +3,7 @@ # Date created: 23 September 1997 # Whom: Andrey Zakhvatov # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1998/06/07 12:01:14 kuriyama Exp $ # DISTNAME= ncurses-1.9.9g @@ -14,9 +14,9 @@ MAINTAINER= andy@icc.surw.chel.su WRKSRC= ${WRKDIR}/ncurses_1.9.9g GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-shared --datadir=${PREFIX}/share/misc +CONFIGURE_ARGS= --with-shared --datadir=${PREFIX}/share/misc USE_GMAKE= yes -MAKE_FLAGS+= ABI_VERSION=3.4 -f +MAKE_FLAGS= ABI_VERSION=3.4 -f post-install: @ ${MKDIR} ${PREFIX}/include/ncurses diff --git a/devel/ncurses/Makefile b/devel/ncurses/Makefile index a7ae32391518..137f9a7dbfb6 100644 --- a/devel/ncurses/Makefile +++ b/devel/ncurses/Makefile @@ -3,7 +3,7 @@ # Date created: 23 September 1997 # Whom: Andrey Zakhvatov # -# $Id$ +# $Id: Makefile,v 1.1.1.1 1998/06/07 12:01:14 kuriyama Exp $ # DISTNAME= ncurses-1.9.9g @@ -14,9 +14,9 @@ MAINTAINER= andy@icc.surw.chel.su WRKSRC= ${WRKDIR}/ncurses_1.9.9g GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-shared --datadir=${PREFIX}/share/misc +CONFIGURE_ARGS= --with-shared --datadir=${PREFIX}/share/misc USE_GMAKE= yes -MAKE_FLAGS+= ABI_VERSION=3.4 -f +MAKE_FLAGS= ABI_VERSION=3.4 -f post-install: @ ${MKDIR} ${PREFIX}/include/ncurses |