[Python-checkins] r75047 - python/trunk/Makefile.pre.in
mark.dickinson
python-checkins at python.org
Thu Sep 24 21:21:07 CEST 2009
Author: mark.dickinson
Date: Thu Sep 24 21:21:07 2009
New Revision: 75047
Log:
Issue #6982: Add generated Lib/lib2to3/*.pickle files to 'make clean' target.
Thanks egreen.
Modified:
python/trunk/Makefile.pre.in
Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in (original)
+++ python/trunk/Makefile.pre.in Thu Sep 24 21:21:07 2009
@@ -1151,7 +1151,7 @@
for i in $(SRCDIRS); do etags -a $$i/*.[ch]; done
# Sanitation targets -- clean leaves libraries, executables and tags
-# files, which clobber removes those as well
+# files, which clobber removes as well
pycremoval:
find $(srcdir) -name '*.py[co]' -exec rm -f {} ';'
@@ -1160,6 +1160,7 @@
find . -name '*.s[ol]' -exec rm -f {} ';'
find build -name 'fficonfig.h' -exec rm -f {} ';' || true
find build -name 'fficonfig.py' -exec rm -f {} ';' || true
+ -rm -f Lib/lib2to3/*Grammar*.pickle
profile-removal:
find . -name '*.gc??' -exec rm -f {} ';'
More information about the Python-checkins
mailing list