From: Mark Dickinson Date: Sun, 1 Aug 2010 21:33:01 +0000 (+0000) Subject: Don't delete Lib/test/data/README when doing 'make distclean' X-Git-Tag: v3.2a2~554 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=de802be00151337356f3da697a7b403db065d0da;p=thirdparty%2FPython%2Fcpython.git Don't delete Lib/test/data/README when doing 'make distclean' --- diff --git a/Makefile.pre.in b/Makefile.pre.in index f7e9f7445945..03195a2ed566 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1204,7 +1204,9 @@ clobber: clean profile-removal # remove all generated files, even Makefile[.pre] # Keep configure and Python-ast.[ch], it's possible they can't be generated distclean: clobber - -rm -f Lib/test/data/* + for file in Lib/test/data/* ; do \ + if test "$$file" != "Lib/test/data/README"; then rm "$$file"; fi; \ + done -rm -f core Makefile Makefile.pre config.status \ Modules/Setup Modules/Setup.local Modules/Setup.config \ Misc/python.pc