diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-06-28 17:30:39 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-06-28 17:30:39 +0000 |
commit | 3a1b3ff177f46843403c8943e7a5b44cb5f730b5 (patch) | |
tree | 390a9ce3a8d6e6228eb3ec1ff301246801b8a46a /include | |
parent | f02ffe6441a7f402b9ed8ad5a8e7396201948443 (diff) | |
download | upstream-3a1b3ff177f46843403c8943e7a5b44cb5f730b5.tar.gz upstream-3a1b3ff177f46843403c8943e7a5b44cb5f730b5.tar.bz2 upstream-3a1b3ff177f46843403c8943e7a5b44cb5f730b5.zip |
add workaround for kernel module install
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4098 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include')
-rw-r--r-- | include/kernel-build.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/kernel-build.mk b/include/kernel-build.mk index 6fae4acc53..55a74701c7 100644 --- a/include/kernel-build.mk +++ b/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 |