Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b6584ca

Browse files
committed
Remove the "lib-" prefix from the name of the info archive.
1 parent ed94dde commit b6584ca

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

Doc/Makefile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ webcheck:
189189

190190
# Release packaging targets:
191191

192-
lib-info-$(RELEASE).tgz: info
192+
info-$(RELEASE).tgz: info
193193
(cd $(INFODIR); tar cf - python-???.info*) | gzip -9 >$@
194194

195195
latex-$(RELEASE).tgz:
@@ -213,7 +213,7 @@ html-$(RELEASE).tgz:
213213
# convenience targets:
214214

215215
tarhtml: html-$(RELEASE).tgz
216-
tarinfo: lib-info-$(RELEASE).tgz
216+
tarinfo: info-$(RELEASE).tgz
217217
tarps: postscript-$(PAPER)-$(RELEASE).tgz
218218
tarpdf: pdf-$(PAPER)-$(RELEASE).tgz
219219
tarlatex: latex-$(RELEASE).tgz
@@ -232,10 +232,11 @@ clean:
232232
(cd $(INFODIR); $(MAKE) clean)
233233

234234
l2hclean:
235-
(cd $(HTMLDIR); rm -rf api ext lib ref tut)
235+
(cd $(HTMLDIR); $(MAKE) clean)
236236

237237
# Remove temporaries as well as final products
238-
clobber: l2hclean
238+
clobber:
239+
(cd $(HTMLDIR); $(MAKE) clobber)
239240
rm -f html-$(RELEASE).tgz info-$(RELEASE).tgz
240241
rm -f pdf-$(RELEASE).tgz postscript-$(RELEASE).tgz
241242
rm -f latex-$(RELEASE).tgz

0 commit comments

Comments
 (0)