diff options
author | rillig <rillig@pkgsrc.org> | 2005-11-10 06:30:53 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-11-10 06:30:53 +0000 |
commit | 2703140c974218e9cf929a9899216f612f295eb5 (patch) | |
tree | 63bcf6f4a160c0e7f7e7b9bd80e762a26827a494 /games | |
parent | 8640d98f5d6c768fce3236196903ad4892cbd65d (diff) | |
download | pkgsrc-2703140c974218e9cf929a9899216f612f295eb5.tar.gz |
- Fixed pkglint warning:
WARN: Makefile:25: CONFIGURE_ARGS should be modified using "+=".
- Removed redundant --prefix=${PREFIX}.
Diffstat (limited to 'games')
-rw-r--r-- | games/angband-x11/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/angband-x11/Makefile b/games/angband-x11/Makefile index 68332a52858..6ce0c4c2d25 100644 --- a/games/angband-x11/Makefile +++ b/games/angband-x11/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.35 2005/06/01 18:02:49 jlam Exp $ +# $NetBSD: Makefile,v 1.36 2005/11/10 06:30:53 rillig Exp $ # DISTNAME= angband-3.0.3 @@ -21,8 +21,8 @@ INCOMPAT_CURSES+= NetBSD-1.6[A-M]-* SPOILERFILE= angband-spoilers.tar.gz -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-setgid=games --prefix=${PREFIX} +GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --with-setgid=games .if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "arm32" GCC_REQD+= 2.95.3 |