From: nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Date: Tue, 8 Nov 2011 10:12:31 +0000 (+0000)
Subject: netifd: fix compile error when both libnl and libnl-tiny are built
X-Git-Url: https://git.rohieb.name/openwrt.git/commitdiff_plain/c68728567afb53c7e1230b6294d4479a90c11d90

netifd: fix compile error when both libnl and libnl-tiny are built

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28854 3c298f89-4303-0410-b956-a3cf2f4a3e73
---

diff --git a/package/netifd/Makefile b/package/netifd/Makefile
index 98b4a4044..831bb6c49 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 \