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
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to