diff options
author | marino <marino> | 2011-12-09 01:31:57 +0000 |
---|---|---|
committer | marino <marino> | 2011-12-09 01:31:57 +0000 |
commit | 78f233238b10f885c90a4e5eb60ec5c32897f733 (patch) | |
tree | e759cf600fd0bdcbed25da766bba3e88cbef9699 /emulators | |
parent | ed62874a323c66aec762b813963bc531455fcea6 (diff) | |
download | pkgsrc-78f233238b10f885c90a4e5eb60ec5c32897f733.tar.gz |
emulators/gnuboy: Fix for modern gcc
The deprecated force-mem flag is not present on later gcc compilers.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/gnuboy/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/emulators/gnuboy/Makefile b/emulators/gnuboy/Makefile index 5eaa5d57d50..4eda9465fac 100644 --- a/emulators/gnuboy/Makefile +++ b/emulators/gnuboy/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2008/03/03 19:21:38 jlam Exp $ +# $NetBSD: Makefile,v 1.13 2011/12/09 01:31:57 marino Exp $ DISTNAME= gnuboy-1.0.3 PKGREVISION= 2 @@ -14,6 +14,7 @@ PKG_DESTDIR_SUPPORT= user-destdir GNU_CONFIGURE= yes INSTALLATION_DIRS= bin +BUILDLINK_TRANSFORM+= rm:-fforce-mem do-install: ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/gnuboy |