diff options
author | lme <lme@FreeBSD.org> | 2015-05-12 01:12:33 +0800 |
---|---|---|
committer | lme <lme@FreeBSD.org> | 2015-05-12 01:12:33 +0800 |
commit | 44884f5505e7f2ff4c44bd24ca09a8a390bba12f (patch) | |
tree | 68b36ef9264aceac8aaa897854dbe7ceb16a3a58 /games | |
parent | ab6966e87a91ac64f80ec99b911a9d52a1b71579 (diff) | |
download | freebsd-ports-gnome-44884f5505e7f2ff4c44bd24ca09a8a390bba12f.tar.gz freebsd-ports-gnome-44884f5505e7f2ff4c44bd24ca09a8a390bba12f.tar.zst freebsd-ports-gnome-44884f5505e7f2ff4c44bd24ca09a8a390bba12f.zip |
Fix build on armv6
PR: 200122
Submitted by: mikael.urankar@gmail.com
Diffstat (limited to 'games')
-rw-r--r-- | games/scummvm/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/games/scummvm/Makefile b/games/scummvm/Makefile index 0982fb5bf783..2eb63bf7af2b 100644 --- a/games/scummvm/Makefile +++ b/games/scummvm/Makefile @@ -58,6 +58,10 @@ MT32EMU_CONFIGURE_OFF= --disable-mt32emu BROKEN= Does not compile on ia64, powerpc, or sparc64 .endif +.if ${ARCH} == "armv6" +CONFIGURE_ENV+= ASFLAGS=-meabi=5 +.endif + post-patch: @${REINPLACE_CMD} -e '/^mandir=/s/datarootdir/prefix/' ${WRKSRC}/configure |