diff options
| author | Felix Fietkau <nbd@openwrt.org> | 2005-10-22 14:41:50 +0000 |
|---|---|---|
| committer | Felix Fietkau <nbd@openwrt.org> | 2005-10-22 14:41:50 +0000 |
| commit | 92afcbb74fd169f650be6840982d24c4d097d63b (patch) | |
| tree | 0c4eb2dfca04d2ff502df385e1d75294348684fe | |
| parent | 22e79bb19b06cd5001742825a1d620c7dafbd6ed (diff) | |
| download | upstream-92afcbb74fd169f650be6840982d24c4d097d63b.tar.gz upstream-92afcbb74fd169f650be6840982d24c4d097d63b.tar.bz2 upstream-92afcbb74fd169f650be6840982d24c4d097d63b.zip | |
fix kernel package install bug
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2240 3c298f89-4303-0410-b956-a3cf2f4a3e73
| -rw-r--r-- | openwrt/target/linux/linux-2.4/Makefile | 2 | ||||
| -rw-r--r-- | openwrt/target/linux/linux-2.6/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/target/linux/linux-2.4/Makefile b/openwrt/target/linux/linux-2.4/Makefile index 4fd8e210497..c86221f4e55 100644 --- a/openwrt/target/linux/linux-2.4/Makefile +++ b/openwrt/target/linux/linux-2.4/Makefile @@ -284,7 +284,7 @@ install: compile $(TARGET_MODULES_DIR) $(KERNEL_IPKG) $(MAKE) -C $(TOPDIR)/target/linux/package \ $(KPKG_MAKEOPTS) \ install - { [ "$(INSTALL_TARGETS)" != "" ] && $(IPKG_KERNEL) install $(INSTALL_TARGETS) || true } $(MAKE_TRACE) + @{ [ "$(INSTALL_TARGETS)" != "" ] && $(IPKG_KERNEL) install $(INSTALL_TARGETS) || true; } $(MAKE_TRACE) mostlyclean: @$(PKG_TRACE) Cleaning... diff --git a/openwrt/target/linux/linux-2.6/Makefile b/openwrt/target/linux/linux-2.6/Makefile index 9ff3ed7694e..489f1369353 100644 --- a/openwrt/target/linux/linux-2.6/Makefile +++ b/openwrt/target/linux/linux-2.6/Makefile @@ -255,7 +255,7 @@ install: compile $(TARGET_MODULES_DIR) $(KERNEL_IPKG) $(MAKE) -C $(TOPDIR)/target/linux/package \ $(KPKG_MAKEOPTS) \ install - @{ [ "$(INSTALL_TARGETS)" != "" ] && $(IPKG_KERNEL) install $(INSTALL_TARGETS) || true } $(MAKE_TRACE) + @{ [ "$(INSTALL_TARGETS)" != "" ] && $(IPKG_KERNEL) install $(INSTALL_TARGETS) || true; } $(MAKE_TRACE) mostlyclean: rm -f $(LINUX_BUILD_DIR)/linux-$(LINUX_VERSION)/.modules_done |
