From 276ad1e336372fa52cdd75f6b83d912e7df03c98 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 28 Jun 2006 17:30:39 +0000 Subject: [PATCH] add workaround for kernel module install SVN-Revision: 4098 --- openwrt/include/kernel-build.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openwrt/include/kernel-build.mk b/openwrt/include/kernel-build.mk index 6fae4acc53..55a74701c7 100644 --- a/openwrt/include/kernel-build.mk +++ b/openwrt/include/kernel-build.mk @@ -105,7 +105,9 @@ $(TOPDIR)/.kernel.mk: echo "LINUX_RELEASE:=$(LINUX_RELEASE)" >> $@ pkg-install: FORCE - @{ [ "$(INSTALL_TARGETS)" != "" ] && $(IPKG) install $(INSTALL_TARGETS) || true; } + @for pkg in $(INSTALL_TARGETS); do \ + $(IPKG) install $$pkg || echo; \ + done source: $(DL_DIR)/$(LINUX_SOURCE) prepare: $(LINUX_DIR)/.configured