From 378f0601d41290be51e7d034d5612f91826f2708 Mon Sep 17 00:00:00 2001 From: Jamie Wilkinson Date: Mon, 1 Jul 2002 04:57:54 +0000 Subject: [PATCH] - Remove emacs backup files in bootstrap clean --- bootstrap | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index 22bc498..815ac9c 100755 --- a/bootstrap +++ b/bootstrap @@ -15,11 +15,12 @@ if [ "$1" = "clean" ]; then if [ -f Makefile ]; then $MAKE distclean fi - find . -name Makefile.in -print | xargs rm -f + find . -name Makefile.in -print0 | xargs -r0 rm -f rm -f aclocal.m4 install-sh missing mkinstalldirs \ stamp-h.in tags configure config.* \ compile depcomp stamp-h rm -rf autom4te.cache + find . -name '*~' -print0 | xargs -r0 rm -f else