diff options
author | marino <marino@pkgsrc.org> | 2011-12-09 01:31:57 +0000 |
---|---|---|
committer | marino <marino@pkgsrc.org> | 2011-12-09 01:31:57 +0000 |
commit | 7e21d01025ea0026c447d15c14195138dc9abc51 (patch) | |
tree | e759cf600fd0bdcbed25da766bba3e88cbef9699 | |
parent | 01e7093f471b0c9c907872d088145ece75ddb6e8 (diff) | |
download | pkgsrc-7e21d01025ea0026c447d15c14195138dc9abc51.tar.gz |
emulators/gnuboy: Fix for modern gcc
The deprecated force-mem flag is not present on later gcc compilers.
-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 |