diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-09-24 19:25:39 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-09-24 19:25:39 (GMT) |
commit | e2a6a70a7f2d8e94cc27774c0fac41933b95e990 (patch) | |
tree | 85c00a6fd964712f9c0bbb72c1c7a42397f56305 | |
parent | bce460441c1782cc7e63d1553c41c2923c923774 (diff) | |
download | cpython-e2a6a70a7f2d8e94cc27774c0fac41933b95e990.zip cpython-e2a6a70a7f2d8e94cc27774c0fac41933b95e990.tar.gz cpython-e2a6a70a7f2d8e94cc27774c0fac41933b95e990.tar.bz2 |
Merged revisions 75049 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r75049 | mark.dickinson | 2009-09-24 20:24:44 +0100 (Thu, 24 Sep 2009) | 10 lines
Merged revisions 75047 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75047 | mark.dickinson | 2009-09-24 20:21:07 +0100 (Thu, 24 Sep 2009) | 3 lines
Issue #6982: Add generated Lib/lib2to3/*.pickle files to 'make clean' target.
Thanks egreen.
........
................
-rw-r--r-- | Makefile.pre.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index ee1b0dd..a35811c 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1148,7 +1148,7 @@ TAGS:: 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 {} ';' @@ -1168,6 +1168,7 @@ clean: pycremoval 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 {} ';' |