diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-11-08 10:12:31 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-11-08 10:12:31 +0000 |
commit | c68728567afb53c7e1230b6294d4479a90c11d90 (patch) | |
tree | 64e093182f7a2ff23bf2f578869a417bb7e9a83f | |
parent | 33f4cde7a96993509b9930f50d64ebecd5a6aa0e (diff) |
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
-rw-r--r-- | package/netifd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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 \ |