mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-12 05:32:24 +00:00
- Remove emacs backup files in bootstrap clean
This commit is contained in:
parent
9743e9dcce
commit
378f0601d4
1 changed files with 2 additions and 1 deletions
|
@ -15,11 +15,12 @@ if [ "$1" = "clean" ]; then
|
||||||
if [ -f Makefile ]; then
|
if [ -f Makefile ]; then
|
||||||
$MAKE distclean
|
$MAKE distclean
|
||||||
fi
|
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 \
|
rm -f aclocal.m4 install-sh missing mkinstalldirs \
|
||||||
stamp-h.in tags configure config.* \
|
stamp-h.in tags configure config.* \
|
||||||
compile depcomp stamp-h
|
compile depcomp stamp-h
|
||||||
rm -rf autom4te.cache
|
rm -rf autom4te.cache
|
||||||
|
find . -name '*~' -print0 | xargs -r0 rm -f
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue