Skip to content

Commit 203947f

Browse files
committed
Merged revisions 83663 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k ........ r83663 | georg.brandl | 2010-08-03 14:36:57 +0200 (Di, 03 Aug 2010) | 1 line A couple of nits how to ignore errors. ........
1 parent 224cea1 commit 203947f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ clean:
119119
-rm -rf tools/docutils
120120

121121
dist:
122-
-rm -rf dist
122+
rm -rf dist
123123
mkdir -p dist
124124

125125
# archive the HTML
@@ -141,15 +141,15 @@ dist:
141141
rm dist/python-$(DISTVERSION)-docs-text.tar
142142

143143
# archive the A4 latex
144-
-rm -r build/latex
144+
rm -rf build/latex
145145
make latex PAPER=a4
146146
-sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
147147
(cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)
148148
cp build/latex/docs-pdf.zip dist/python-$(DISTVERSION)-docs-pdf-a4.zip
149149
cp build/latex/docs-pdf.tar.bz2 dist/python-$(DISTVERSION)-docs-pdf-a4.tar.bz2
150150

151151
# archive the letter latex
152-
rm -r build/latex
152+
rm -rf build/latex
153153
make latex PAPER=letter
154154
-sed -i 's/makeindex/makeindex -q/' build/latex/Makefile
155155
(cd build/latex; make clean && make all-pdf && make FMT=pdf zip bz2)

0 commit comments

Comments
 (0)