diff options
-rw-r--r-- | audio/libcanberra/Makefile | 3 | ||||
-rw-r--r-- | graphics/swfdec/Makefile | 6 |
2 files changed, 7 insertions, 2 deletions
diff --git a/audio/libcanberra/Makefile b/audio/libcanberra/Makefile index 496d6e7db..6bb927c85 100644 --- a/audio/libcanberra/Makefile +++ b/audio/libcanberra/Makefile @@ -45,6 +45,7 @@ PLIST_SUB+= GSTREAMER="@comment " .endif post-patch: - @${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH} + @${REINPLACE_CMD} -e 's|-Wmissing-include-dirs||g' \ + ${WRKSRC}/configure .include <bsd.port.post.mk> diff --git a/graphics/swfdec/Makefile b/graphics/swfdec/Makefile index 39299fdee..7d0510568 100644 --- a/graphics/swfdec/Makefile +++ b/graphics/swfdec/Makefile @@ -4,7 +4,7 @@ # Whom: ijliao # # $FreeBSD$ -# $MCom$ +# $MCom: ports/graphics/swfdec/Makefile,v 1.24 2008/09/08 23:48:03 kwm Exp $ PORTNAME= swfdec PORTVERSION= 0.8.0 @@ -41,4 +41,8 @@ post-extract: @${CP} ${FILESDIR}/swfdec_playback_oss.c \ ${WRKSRC}/swfdec-gtk +post-patch: + @${REINPLACE_CMD} -e 's|-Wmissing-include-dirs||g' \ + ${WRKSRC}/configure + .include <bsd.port.post.mk> |