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 /devel | |
parent | 2d6d9c9a7fe26e65fd1d33610273db7a35d36f7e (diff) | |
download | marcuscom-ports-f7204ea297a3856823a1f0fda9a3b4cc3ca3b249.tar.gz 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 'devel')
-rw-r--r-- | devel/libsoup/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/libsoup/Makefile b/devel/libsoup/Makefile index 2b61e5713..83836f082 100644 --- a/devel/libsoup/Makefile +++ b/devel/libsoup/Makefile @@ -3,7 +3,7 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/devel/libsoup/Makefile,v 1.101 2011/05/25 15:58:52 kwm Exp $ +# $MCom: ports/devel/libsoup/Makefile,v 1.102 2011/06/06 17:50:29 kwm Exp $ # PORTNAME= libsoup @@ -29,7 +29,7 @@ USE_AUTOTOOLS= libtool USE_GMAKE= yes CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \ --disable-gtk-doc -CPPFLAGS= "-I${LOCALBASE}/include" +CPPFLAGS= -I${LOCALBASE}/include CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib" PLIST_SUB= VERSION="2.4" |