diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-06-10 00:27:51 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-06-10 00:27:51 +0800 |
commit | f7204ea297a3856823a1f0fda9a3b4cc3ca3b249 (patch) | |
tree | 08a25c4bb2786acf2dc2bd48bc9eed151eb1fb47 /www | |
parent | 2d6d9c9a7fe26e65fd1d33610273db7a35d36f7e (diff) | |
download | marcuscom-ports-f7204ea297a3856823a1f0fda9a3b4cc3ca3b249.tar marcuscom-ports-f7204ea297a3856823a1f0fda9a3b4cc3ca3b249.tar.gz marcuscom-ports-f7204ea297a3856823a1f0fda9a3b4cc3ca3b249.tar.bz2 marcuscom-ports-f7204ea297a3856823a1f0fda9a3b4cc3ca3b249.tar.lz marcuscom-ports-f7204ea297a3856823a1f0fda9a3b4cc3ca3b249.tar.xz marcuscom-ports-f7204ea297a3856823a1f0fda9a3b4cc3ca3b249.tar.zst marcuscom-ports-f7204ea297a3856823a1f0fda9a3b4cc3ca3b249.zip |
The CPPFLAGS should have no quote in it.
Before:
---------------------
# make -V CPPFLAGS
"-I/usr/local/include"
---------------------
After:
---------------------
# make -V CPPFLAGS
-I/usr/local/include
---------------------
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@16049 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www')
-rw-r--r-- | www/webkit-gtk3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/webkit-gtk3/Makefile b/www/webkit-gtk3/Makefile index b01492042..eaa34a473 100644 --- a/www/webkit-gtk3/Makefile +++ b/www/webkit-gtk3/Makefile @@ -3,7 +3,7 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/www/webkit-gtk3/Makefile,v 1.15 2011/06/07 13:35:09 kwm Exp $ +# $MCom: ports/www/webkit-gtk3/Makefile,v 1.16 2011/06/09 10:13:51 kwm Exp $ # PORTNAME= webkit @@ -35,7 +35,7 @@ USE_GNOME= gtk30 libxslt ltverhack USE_PERL5= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes -CPPFLAGS= "-I${LOCALBASE}/include" +CPPFLAGS= -I${LOCALBASE}/include CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" \ ac_cv_path_FLEX="${LOCALBASE}/bin/flex" \ ac_cv_path_DOLT_BASH="" |