summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2011-12-05 15:34:41 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2011-12-05 15:34:46 +0100
commit0619aaf4900070db5429f9b9cdebcae6ce73bce0 (patch)
tree33b97c603dc3441f76e8a8ec4e069d80794eb493 /Makefile.in
parentb94b126676b49acbfc1e7c00e8c978c8a5e83dce (diff)
downloadptxdist-0619aaf4900070db5429f9b9cdebcae6ce73bce0.tar.gz
ptxdist-0619aaf4900070db5429f9b9cdebcae6ce73bce0.tar.xz
don't call rm for nothing
This fixes the following error when running "make clean": rm: missing operand Try `rm --help' for more information. make: *** [clean] Error 123 Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 9b29960c5..4e7ebe5c2 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -52,7 +52,7 @@ environment:
clean:
@rm -f .done
- @find "$(abs_srcdir)/bin" -type l -print0 | xargs -0 rm
+ @find "$(abs_srcdir)/bin" -type l -print0 | xargs -r -0 rm
@$(MAKE) -C "$(abs_srcdir)/scripts/kconfig" clean
dirty-check: