diff options
author | Barry Warsaw <barry@python.org> | 2010-04-26 16:02:14 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2010-04-26 16:02:14 (GMT) |
commit | 5f2347d869d6b7dc6498fd8c7bb13be9277ed0db (patch) | |
tree | 802d073edd899066cb88a1c5f16681f7787c1e31 /Makefile.pre.in | |
parent | c04317fdc45ded619a1b66941d1437a5e9a37a73 (diff) | |
download | cpython-5f2347d869d6b7dc6498fd8c7bb13be9277ed0db.zip cpython-5f2347d869d6b7dc6498fd8c7bb13be9277ed0db.tar.gz cpython-5f2347d869d6b7dc6498fd8c7bb13be9277ed0db.tar.bz2 |
Ignore errors.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index b0b9ee4..4db7615 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1160,8 +1160,8 @@ TAGS:: # Sanitation targets -- clean leaves libraries, executables and tags # files, which clobber removes as well pycremoval: - find $(srcdir) -name '*.py[co]' -exec rm -f {} ';' - find $(srcdir) -name '__pycache__' -exec rmdir {} ';' + -find $(srcdir) -name '*.py[co]' -exec rm -f {} ';' + -find $(srcdir) -name '__pycache__' -exec rmdir {} ';' rmtestturds: -rm -f *BAD *GOOD *SKIPPED |