- Remove emacs backup files in bootstrap clean

This commit is contained in:
Jamie Wilkinson 2002-07-01 04:57:54 +00:00
parent 9743e9dcce
commit 378f0601d4

View file

@ -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