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 <js@xxxxxxxxx> --- 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= -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html