diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-11-19 23:03:09 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-11-19 23:03:09 +0000 |
commit | c439768c9af677c22fb2893c467e9fec89dfff21 (patch) | |
tree | a22b3f0dd96c5f3f28ebd81fa1e7844f452a7a5a /package/libnl | |
parent | cbb4e6b5a2012ea36a5072481cf9eff9f7d869f5 (diff) | |
download | upstream-c439768c9af677c22fb2893c467e9fec89dfff21.tar.gz upstream-c439768c9af677c22fb2893c467e9fec89dfff21.tar.bz2 upstream-c439768c9af677c22fb2893c467e9fec89dfff21.zip |
fix libnl include issues which broke a few packages
SVN-Revision: 9581
Diffstat (limited to 'package/libnl')
-rw-r--r-- | package/libnl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/libnl/Makefile b/package/libnl/Makefile index 28958f4a51..d232c77b3f 100644 --- a/package/libnl/Makefile +++ b/package/libnl/Makefile @@ -39,7 +39,8 @@ endef ifneq ($(CONFIG_LINUX_2_6_23),) define Build/InstallDev $(CP) $(PKG_INSTALL_DIR)/* $(1)/ - $(CP) $(PKG_BUILD_DIR)/include/linux $(1)/usr/include/ + mkdir -p $(1)/usr/include/libnl + $(CP) $(PKG_BUILD_DIR)/include/linux $(1)/usr/include/libnl/ endef define Build/UninstallDev |