mirror of https://github.com/python/cpython
A couple of nits how to ignore errors.
This commit is contained in:
parent
2f27755f5d
commit
38557f2ac9
|
@ -120,7 +120,7 @@ clean:
|
||||||
-rm -rf tools/docutils
|
-rm -rf tools/docutils
|
||||||
|
|
||||||
dist:
|
dist:
|
||||||
-rm -rf dist
|
rm -rf dist
|
||||||
mkdir -p dist
|
mkdir -p dist
|
||||||
|
|
||||||
# archive the HTML
|
# archive the HTML
|
||||||
|
@ -142,7 +142,7 @@ dist:
|
||||||
rm dist/python-$(DISTVERSION)-docs-text.tar
|
rm dist/python-$(DISTVERSION)-docs-text.tar
|
||||||
|
|
||||||
# archive the A4 latex
|
# archive the A4 latex
|
||||||
-rm -r build/latex
|
rm -rf build/latex
|
||||||
make latex PAPER=a4
|
make latex PAPER=a4
|
||||||
-sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
|
-sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
|
||||||
(cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
|
(cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
|
||||||
|
@ -150,7 +150,7 @@ dist:
|
||||||
cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2
|
cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2
|
||||||
|
|
||||||
# archive the letter latex
|
# archive the letter latex
|
||||||
rm -r build/latex
|
rm -rf build/latex
|
||||||
make latex PAPER=letter
|
make latex PAPER=letter
|
||||||
-sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
|
-sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
|
||||||
(cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
|
(cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
|
||||||
|
|
Loading…
Reference in New Issue