diff options
author | rillig <rillig> | 2005-11-10 06:30:53 +0000 |
---|---|---|
committer | rillig <rillig> | 2005-11-10 06:30:53 +0000 |
commit | 635962ecdf6565a7c96c221c098ff1b3d0a53c9d (patch) | |
tree | 63bcf6f4a160c0e7f7e7b9bd80e762a26827a494 /games | |
parent | e2adeac81848f86b98bc41181c190ced0b9338b2 (diff) | |
download | pkgsrc-635962ecdf6565a7c96c221c098ff1b3d0a53c9d.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 |