##// END OF EJS Templates
make: restrict recursion in make clean
Matt Mackall -
r20007:23edc667 default
parent child Browse files
Show More
@@ -53,7 +53,8 b' doc:'
53
53
54 clean:
54 clean:
55 -$(PYTHON) setup.py clean --all # ignore errors from this command
55 -$(PYTHON) setup.py clean --all # ignore errors from this command
56 find . \( -name '*.py[cdo]' -o -name '*.so' \) -exec rm -f '{}' ';'
56 find contrib doc hgext i18n mercurial tests \
57 \( -name '*.py[cdo]' -o -name '*.so' \) -exec rm -f '{}' ';'
57 rm -f $(addprefix mercurial/,$(notdir $(wildcard mercurial/pure/[a-z]*.py)))
58 rm -f $(addprefix mercurial/,$(notdir $(wildcard mercurial/pure/[a-z]*.py)))
58 rm -f MANIFEST MANIFEST.in mercurial/__version__.py tests/*.err
59 rm -f MANIFEST MANIFEST.in mercurial/__version__.py tests/*.err
59 rm -rf build mercurial/locale
60 rm -rf build mercurial/locale
General Comments 0
You need to be logged in to leave comments. Login now