diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-11-08 10:12:31 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-11-08 10:12:31 +0000 |
commit | b2dce50790e96a004c24969b2bc1fe4feba33f41 (patch) | |
tree | 64e093182f7a2ff23bf2f578869a417bb7e9a83f /package/netifd | |
parent | a31e4087d1b5eba0e0667b26543c651a6b62c329 (diff) | |
download | upstream-b2dce50790e96a004c24969b2bc1fe4feba33f41.tar.gz upstream-b2dce50790e96a004c24969b2bc1fe4feba33f41.tar.bz2 upstream-b2dce50790e96a004c24969b2bc1fe4feba33f41.zip |
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
Diffstat (limited to 'package/netifd')
-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 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 \ |