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 /net/vino3 | |
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 'net/vino3')
-rw-r--r-- | net/vino3/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/vino3/Makefile b/net/vino3/Makefile index 0289a743a..d086b7c28 100644 --- a/net/vino3/Makefile +++ b/net/vino3/Makefile @@ -3,7 +3,7 @@ # Whom: Tom McLaughlin <tmclaugh@sdf.lonestar.org> # # $FreeBSD$ -# $MCom: ports/net/vino3/Makefile,v 1.9 2011/05/02 21:10:43 kwm Exp $ +# $MCom: ports/net/vino3/Makefile,v 1.10 2011/06/06 17:54:24 kwm Exp $ # PORTNAME= vino @@ -34,7 +34,7 @@ GNU_CONFIGURE= yes INSTALLS_ICONS= yes CONFIGURE_ARGS= --without-network-manager \ --disable-http-server -CPPFLAGS= "-I${LOCALBASE}/include" +CPPFLAGS= -I${LOCALBASE}/include CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" GLIB_SCHEMAS= org.gnome.Vino.enums.xml org.gnome.Vino.gschema.xml |