From 84472dd56902e282ec2fa4d390fed4e4446cedf0 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 25 Jul 2006 14:44:54 +0000 Subject: [PATCH] don't try to create kmod packages that contain no files SVN-Revision: 4278 --- openwrt/package/kernel/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openwrt/package/kernel/Makefile b/openwrt/package/kernel/Makefile index c977501e08..b1155f4286 100644 --- a/openwrt/package/kernel/Makefile +++ b/openwrt/package/kernel/Makefile @@ -72,12 +72,14 @@ define KernelPackage endef ifeq ($(findstring m,$(KCONFIG)),m) + ifneq ($(strip $(FILES)),) define Package/kmod-$(1)/install mkdir -p $$(1)/lib/modules/$(LINUX_VERSION) $(CP) $$(FILES) $$(1)/lib/modules/$(LINUX_VERSION)/ $(call ModuleAutoLoad,$(1),$$(1),$(AUTOLOAD)) endef endif + endif $$(eval $$(call BuildPackage,kmod-$(1))) endef -- 2.25.1