svn commit: r327112 - head/graphics/pqiv
John Marino
marino at FreeBSD.org
Thu Sep 12 21:46:30 UTC 2013
Author: marino
Date: Thu Sep 12 21:46:30 2013
New Revision: 327112
URL: http://svnweb.freebsd.org/changeset/ports/327112
Log:
graphics/pqiv: Use pkg-config to set flags correctly
The CPP and LD flags were being defined by an empty string that was
supposed to be "pkg-config". Just use that instead to unbreak the
build.
Modified:
head/graphics/pqiv/Makefile
Modified: head/graphics/pqiv/Makefile
==============================================================================
--- head/graphics/pqiv/Makefile Thu Sep 12 21:33:54 2013 (r327111)
+++ head/graphics/pqiv/Makefile Thu Sep 12 21:46:30 2013 (r327112)
@@ -37,8 +37,8 @@ MAN1= pqiv.1
PORTDOCS= README.markdown
PLIST_FILES= bin/pqiv
-CPPFLAGS+= $$(${pkgconfig_DETECT} --cflags gtk+-2.0 gthread-2.0)
-LDFLAGS+= $$(${pkgconfig_DETECT} --libs gtk+-2.0 gthread-2.0)
+CPPFLAGS+= `pkg-config --cflags gtk+-2.0 gthread-2.0`
+LDFLAGS+= `pkg-config --libs gtk+-2.0 gthread-2.0`
.include <bsd.port.options.mk>
More information about the svn-ports-head
mailing list