summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-06-28 17:30:39 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-06-28 17:30:39 +0000
commit276ad1e336372fa52cdd75f6b83d912e7df03c98 (patch)
treedbcdc259e11f0f6fe2238a107858b3802418200c
parent74b7b29d17a8fcbc2147bd4a32f45a955488a083 (diff)
downloadmtk-20170518-276ad1e336372fa52cdd75f6b83d912e7df03c98.zip
mtk-20170518-276ad1e336372fa52cdd75f6b83d912e7df03c98.tar.gz
mtk-20170518-276ad1e336372fa52cdd75f6b83d912e7df03c98.tar.bz2
add workaround for kernel module install
SVN-Revision: 4098
-rw-r--r--openwrt/include/kernel-build.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/openwrt/include/kernel-build.mk b/openwrt/include/kernel-build.mk
index 6fae4ac..55a7470 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