summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2002-10-16 12:17:35 -0500
committerKai Germaschewski <kai@tp1.ruhr-uni-bochum.de>2002-10-16 12:17:35 -0500
commit366b173e7136fe4ac6fd252fffec648a5cbf3181 (patch)
tree21a796937650f7a81d2738722b78e9c9a7d92c96 /scripts
parent6d65aab5bb3bbc05f280b4a49268982dfa76c2e1 (diff)
kbuild: another "make clean" micro-optimization
Patch by Peter Samuelson, merged to current code, actually has a noticable impact on "make clean" speed.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/Makefile.clean2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.clean b/scripts/Makefile.clean
index fa809a7e88ad..d7bb2dfb88d8 100644
--- a/scripts/Makefile.clean
+++ b/scripts/Makefile.clean
@@ -32,7 +32,7 @@ ifneq ($(strip $(__clean-files) $(clean-rule)),)
rm -f $(__clean-files)
$(clean-rule)
else
- @/bin/true
+ @:
endif
.PHONY: $(subdir-ymn)