[Python-3000-checkins] r57683 - python/branches/py3k/Makefile.pre.in

guido.van.rossum python-3000-checkins at python.org
Thu Aug 30 01:35:30 CEST 2007


Author: guido.van.rossum
Date: Thu Aug 30 01:35:30 2007
New Revision: 57683

Modified:
   python/branches/py3k/Makefile.pre.in
Log:
Don't delete test output when "make clean" is run -- only when "make
clobber" is run.  (Thanks Thomas W. for pointing this out!)



Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in	(original)
+++ python/branches/py3k/Makefile.pre.in	Thu Aug 30 01:35:30 2007
@@ -1031,13 +1031,13 @@
 	-rm -f *.txt
 	-rm -f gb-18030-2000.xml
 
-clean: pycremoval rmtestturds
+clean: pycremoval
 	find . -name '*.o' -exec rm -f {} ';'
 	find . -name '*.s[ol]' -exec rm -f {} ';'
 	find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
 	find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
 
-clobber: clean
+clobber: clean rmtestturds
 	-rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
 		tags TAGS \
 		config.cache config.log pyconfig.h Modules/config.c


More information about the Python-3000-checkins mailing list