diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-11-11 00:29:51 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-11-11 00:29:51 +0800 |
commit | c3f3a5addc85d2a880d9c890d1e1cfe790480213 (patch) | |
tree | 07c527a487b167eb68823fef77617c7f9eb1134a | |
parent | 37f8343cce66b9a67d91d7606a1d7b78986ef95d (diff) | |
download | marcuscom-ports-c3f3a5addc85d2a880d9c890d1e1cfe790480213.tar marcuscom-ports-c3f3a5addc85d2a880d9c890d1e1cfe790480213.tar.gz marcuscom-ports-c3f3a5addc85d2a880d9c890d1e1cfe790480213.tar.bz2 marcuscom-ports-c3f3a5addc85d2a880d9c890d1e1cfe790480213.tar.lz marcuscom-ports-c3f3a5addc85d2a880d9c890d1e1cfe790480213.tar.xz marcuscom-ports-c3f3a5addc85d2a880d9c890d1e1cfe790480213.tar.zst marcuscom-ports-c3f3a5addc85d2a880d9c890d1e1cfe790480213.zip |
Make webkit respect ${CC}.
Submitted by: Andrius Morkunas <hinokind@gmail.com>
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13208 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | www/webkit-gtk2/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/www/webkit-gtk2/Makefile b/www/webkit-gtk2/Makefile index 8eb2dd0fa..754186ede 100644 --- a/www/webkit-gtk2/Makefile +++ b/www/webkit-gtk2/Makefile @@ -3,7 +3,7 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/www/webkit-gtk2/Makefile,v 1.47 2009/10/19 19:18:17 marcus Exp $ +# $MCom: ports/www/webkit-gtk2/Makefile,v 1.48 2009/10/25 16:52:37 marcus Exp $ # PORTNAME= webkit @@ -85,5 +85,9 @@ post-patch: @${REINPLACE_CMD} -e 's|^build_old_libs=yes|build_old_libs=no|' \ ${WRKDIR}/gnome-libtool .endif + @${REINPLACE_CMD} -e 's|/usr/bin/gcc|${CC}|' \ + ${WRKSRC}/WebCore/dom/make_names.pl \ + ${WRKSRC}/WebCore/css/make-css-file-arrays.pl \ + ${WRKSRC}/WebCore/bindings/scripts/IDLParser.pm .include <bsd.port.post.mk> |