summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-11-08 10:12:31 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-11-08 10:12:31 +0000
commit9906717bfbfbd976f6efbd9152d0edd2cb606611 (patch)
tree382e4ee497d8c2d1b1000a5339bdeabd076b5561
parent7a2efd8c28a688a00cbcfdee6a8d313d0f41bc70 (diff)
downloadmaster-31e0f0ae-9906717bfbfbd976f6efbd9152d0edd2cb606611.tar.gz
master-31e0f0ae-9906717bfbfbd976f6efbd9152d0edd2cb606611.tar.bz2
master-31e0f0ae-9906717bfbfbd976f6efbd9152d0edd2cb606611.zip
netifd: fix compile error when both libnl and libnl-tiny are built
SVN-Revision: 28854
-rw-r--r--package/netifd/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/netifd/Makefile b/package/netifd/Makefile
index 98b4a4044f..831bb6c49f 100644
--- a/package/netifd/Makefile
+++ b/package/netifd/Makefile
@@ -23,8 +23,8 @@ define Package/netifd
endef
TARGET_CFLAGS += \
- -I$(STAGING_DIR)/usr/include \
- -I$(STAGING_DIR)/usr/include/libnl-tiny
+ -I$(STAGING_DIR)/usr/include/libnl-tiny \
+ -I$(STAGING_DIR)/usr/include
CMAKE_OPTIONS += \
-DLIBNL_LIBS=-lnl-tiny \