mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-13 00:24:12 +00:00
Get the Makefile find command right for boostrap clean.
This commit is contained in:
parent
a85c0713aa
commit
a834bff8a3
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ if test "$1" = "clean"; then
|
||||||
m4/lt~obsolete.m4
|
m4/lt~obsolete.m4
|
||||||
|
|
||||||
cd -
|
cd -
|
||||||
find . \( -path ./tools/gas2masm -o -path ./tools/quaketoascii \) -name Makefile -print0 | xargs $ARGS rm -f
|
find . \( -path ./tools/gas2masm -o -path ./tools/quaketoascii \) -prune -o -name Makefile -print0 | xargs $ARGS rm -f
|
||||||
find . -name core -print0 | xargs $ARGS rm -f
|
find . -name core -print0 | xargs $ARGS rm -f
|
||||||
rm -f RPM/build_rpm RPM/quakeforge.conf RPM/quakeforge.spec RPM/rpmmacros
|
rm -f RPM/build_rpm RPM/quakeforge.conf RPM/quakeforge.spec RPM/rpmmacros
|
||||||
find . -name '*.o' -type f -print0 | xargs $ARGS rm -f
|
find . -name '*.o' -type f -print0 | xargs $ARGS rm -f
|
||||||
|
|
Loading…
Reference in a new issue