diff options
author | tijl <tijl@FreeBSD.org> | 2013-07-05 02:08:34 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2013-07-05 02:08:34 +0800 |
commit | 4b91db82cf59654752eddb8aa5edc78273e8fd18 (patch) | |
tree | b262bae9fb3c1c0d329a52f85351e3431f76114c | |
parent | c43f6253ba2b27590ee11c6bc62d38d459cf473c (diff) | |
download | freebsd-ports-gnome-4b91db82cf59654752eddb8aa5edc78273e8fd18.tar.gz freebsd-ports-gnome-4b91db82cf59654752eddb8aa5edc78273e8fd18.tar.zst freebsd-ports-gnome-4b91db82cf59654752eddb8aa5edc78273e8fd18.zip |
Add -Wno-unused-parameter to silence excessive clang warnings.
-rw-r--r-- | emulators/e-uae/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emulators/e-uae/Makefile b/emulators/e-uae/Makefile index 0b7d053a957d..465daadae982 100644 --- a/emulators/e-uae/Makefile +++ b/emulators/e-uae/Makefile @@ -33,8 +33,9 @@ PLIST_FILES= bin/readdisk bin/uae .include <bsd.port.options.mk> post-patch: - @${REINPLACE_CMD} -e \ - '/X11\/xkb\/rules/s|/usr/X11R6/lib|${LOCALBASE}/share|' \ + @${REINPLACE_CMD} \ + -e '\,X11/xkb/rules,s,/usr/X11R6/lib,${LOCALBASE}/share,' \ + -e 's,-W ,&-Wno-unused-parameter ,' \ ${WRKSRC}/configure do-install: |