summaryrefslogtreecommitdiff
path: root/Doc/Makefile
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-08-03 12:36:57 +0000
committerGeorg Brandl <georg@python.org>2010-08-03 12:36:57 +0000
commit38557f2ac94a8d50c2d1ffd3e13d29e7ebeff141 (patch)
tree1251546550d7c733c43b9a08e441d664847fdd6d /Doc/Makefile
parent2f27755f5d838e018017609dfe7acf1ae87d0d12 (diff)
downloadcpython-git-38557f2ac94a8d50c2d1ffd3e13d29e7ebeff141.tar.gz
A couple of nits how to ignore errors.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r--Doc/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index c20374fbe3..d12e4c7ca9 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -120,7 +120,7 @@ clean:
-rm -rf tools/docutils
dist:
- -rm -rf dist
+ rm -rf dist
mkdir -p dist
# archive the HTML
@@ -142,7 +142,7 @@ dist:
rm dist/python-$(DISTVERSION)-docs-text.tar
# archive the A4 latex
- -rm -r build/latex
+ rm -rf build/latex
make latex PAPER=a4
-sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
(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
# archive the letter latex
- rm -r build/latex
+ rm -rf build/latex
make latex PAPER=letter
-sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
(cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)