svn commit: r322285 - head/emulators/e-uae

Tijl Coosemans tijl at FreeBSD.org
Thu Jul 4 18:08:35 UTC 2013


Author: tijl
Date: Thu Jul  4 18:08:34 2013
New Revision: 322285
URL: http://svnweb.freebsd.org/changeset/ports/322285

Log:
  Add -Wno-unused-parameter to silence excessive clang warnings.

Modified:
  head/emulators/e-uae/Makefile

Modified: head/emulators/e-uae/Makefile
==============================================================================
--- head/emulators/e-uae/Makefile	Thu Jul  4 17:59:48 2013	(r322284)
+++ head/emulators/e-uae/Makefile	Thu Jul  4 18:08:34 2013	(r322285)
@@ -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:


More information about the svn-ports-all mailing list