1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 09:58:32 +03:00

make sure iw doesn't get compiled on older kernels

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9639 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2007-11-30 11:33:31 +00:00
parent a410c61294
commit d7ac2229f5

View File

@ -38,9 +38,11 @@ MAKE_FLAGS += \
CFLAGS="$(TARGET_CFLAGS) -I$(STAGING_DIR)/usr/include/mac80211 -I$(STAGING_DIR)/usr/include/libnl -I$(STAGING_DIR)/usr/include" \
LDFLAGS="-L$(STAGING_DIR)/usr/lib -lnl"
define Package/iw/install
ifneq ($(CONFIG_LINUX_2_6_23),)
define Package/iw/install
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/iw $(1)/usr/sbin/
endef
endef
endif
$(eval $(call BuildPackage,iw))