Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 12 Sep 2013 21:46:30 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r327112 - head/graphics/pqiv
Message-ID:  <201309122146.r8CLkUoi037029@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309122146.r8CLkUoi037029>