From a834bff8a3ecb01c069c1f603de7d129558308d9 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 4 Jan 2011 22:25:26 +0900 Subject: [PATCH] Get the Makefile find command right for boostrap clean. --- bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index 649f1751f..7e7aa4789 100755 --- a/bootstrap +++ b/bootstrap @@ -25,7 +25,7 @@ if test "$1" = "clean"; then m4/lt~obsolete.m4 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 rm -f RPM/build_rpm RPM/quakeforge.conf RPM/quakeforge.spec RPM/rpmmacros find . -name '*.o' -type f -print0 | xargs $ARGS rm -f