diff options
author | marcus <marcus@FreeBSD.org> | 2009-03-27 13:13:53 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2009-03-27 13:13:53 +0800 |
commit | 87e17120d862e832170bc28627cda2232faa13e7 (patch) | |
tree | 8ebed184db8a155f6e3590ed586a46362a4e987a /games | |
parent | cd60d011afc2c2b3da4f117801eb54fc2dab7cff (diff) | |
download | freebsd-ports-gnome-87e17120d862e832170bc28627cda2232faa13e7.tar.gz freebsd-ports-gnome-87e17120d862e832170bc28627cda2232faa13e7.tar.zst freebsd-ports-gnome-87e17120d862e832170bc28627cda2232faa13e7.zip |
Remove -Werror to fix the build on 6.X.
Reported by: pointyhat via erwin
Diffstat (limited to 'games')
-rw-r--r-- | games/gcompris/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/gcompris/Makefile b/games/gcompris/Makefile index 013e7d6b8b03..670b48b26e17 100644 --- a/games/gcompris/Makefile +++ b/games/gcompris/Makefile @@ -44,7 +44,8 @@ INFO= gcompris .include <bsd.port.pre.mk> post-patch: - @${REINPLACE_CMD} -e 's|echo aout|echo elf|g' \ + @${REINPLACE_CMD} -e 's|echo aout|echo elf|g ; \ + s|-Werror||g' \ ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ ${WRKSRC}/src/gcompris/gcompris.c |