diff options
author | asami <asami@FreeBSD.org> | 1998-06-08 08:15:43 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-06-08 08:15:43 +0800 |
commit | 148b4b4c22cbcd73a063fec6407c2b714a961975 (patch) | |
tree | aa7abb04154c2afb9ebc148d65dfc839733c5b9b /devel/ncurses/Makefile | |
parent | 6f8757e01afcf1097a3686ec6b09163b989697a3 (diff) | |
download | freebsd-ports-gnome-148b4b4c22cbcd73a063fec6407c2b714a961975.tar.gz freebsd-ports-gnome-148b4b4c22cbcd73a063fec6407c2b714a961975.tar.zst freebsd-ports-gnome-148b4b4c22cbcd73a063fec6407c2b714a961975.zip |
No need to use "+=" to define a variable that appears only once....
Diffstat (limited to 'devel/ncurses/Makefile')
-rw-r--r-- | devel/ncurses/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
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 |