diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-07-25 14:44:54 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-07-25 14:44:54 +0000 |
commit | aaa058cf5cf5dc603edcdf09a75eb08c77709a93 (patch) | |
tree | 5fe12f41799f7ef847e29baa564f23d8fb2b7adb | |
parent | b03a57d41ea3d58235cfcc3c1eec0a1d16270628 (diff) |
don't try to create kmod packages that contain no files
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4278 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/kernel/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/kernel/Makefile b/package/kernel/Makefile index c977501e0..b1155f428 100644 --- a/package/kernel/Makefile +++ b/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 |