diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-08-24 19:13:10 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-08-24 19:13:10 +0000 |
commit | 689b7e26d28404369f81068b65c9354a0a9366e3 (patch) | |
tree | b22da9729d7c17c0283af6a6240bc16704818b42 /openwrt/Makefile | |
parent | 8aee0bee5c852207c97492f0262b0939e2c5ed4e (diff) | |
download | mtk-20170518-689b7e26d28404369f81068b65c9354a0a9366e3.zip mtk-20170518-689b7e26d28404369f81068b65c9354a0a9366e3.tar.gz mtk-20170518-689b7e26d28404369f81068b65c9354a0a9366e3.tar.bz2 |
hide rm -rf command in Makefile
SVN-Revision: 4656
Diffstat (limited to 'openwrt/Makefile')
-rw-r--r-- | openwrt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/Makefile b/openwrt/Makefile index 15074c5..fe10e07 100644 --- a/openwrt/Makefile +++ b/openwrt/Makefile @@ -100,7 +100,7 @@ toolchain/%: FORCE echo "Prerequisite check failed. Use FORCE=1 to override."; \ false; \ } - rm -rf "$(TOPDIR)/tmp" + @rm -rf "$(TOPDIR)/tmp" @touch $@ prereq: .prereq-build .prereq-packages FORCE |