From: Johannes Stezenbach Date: Tue, 10 Nov 2009 17:29:34 +0000 (+0100) Subject: iw: use PKG_CONFIG variable consistently X-Git-Tag: v0.9.18~13 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c7f53388b4b1799893a2162933396227c2e7aa4a;p=thirdparty%2Fiw.git iw: use PKG_CONFIG variable consistently Use the correct pkg-config version consistently. Note: For quick&dirty cross compilation I used the following in .config: PKG_CONFIG = false NLLIBNAME = libnl-1 LIBS += -L../libnl-1.1/lib -lnl CFLAGS += -I../libnl-1.1/include CC := arm-linux-gcc Signed-off-by: Johannes Stezenbach --- diff --git a/Makefile b/Makefile index 68bef4d..1174130 100644 --- a/Makefile +++ b/Makefile @@ -38,8 +38,8 @@ ifeq ($(NLLIBNAME),) $(error Cannot find development files for any supported version of libnl) endif -LIBS += $(shell pkg-config --libs $(NLLIBNAME)) -CFLAGS += $(shell pkg-config --cflags $(NLLIBNAME)) +LIBS += $(shell $(PKG_CONFIG) --libs $(NLLIBNAME)) +CFLAGS += $(shell $(PKG_CONFIG) --cflags $(NLLIBNAME)) ifeq ($(V),1) Q=