diff options
author | Lars Engels <lme@FreeBSD.org> | 2015-05-11 17:12:33 +0000 |
---|---|---|
committer | Lars Engels <lme@FreeBSD.org> | 2015-05-11 17:12:33 +0000 |
commit | e4978fc24640e3379d11b766c695f7efb1068160 (patch) | |
tree | 68b36ef9264aceac8aaa897854dbe7ceb16a3a58 /games | |
parent | This *needs* Module::Build to build. (diff) |
Fix build on armv6
PR: 200122
Submitted by: mikael.urankar@gmail.com
Notes
Notes:
svn path=/head/; revision=386089
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 |