diff options
author | Fred Drake <fdrake@acm.org> | 1998-05-11 18:53:07 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-05-11 18:53:07 (GMT) |
commit | 29cabd4cd77b82b573e719b1f56d24f4c19dec2e (patch) | |
tree | 3abd53f8c75cfc417bdfaaaa870960ed30ae8622 /Doc/Makefile | |
parent | f2fa1e2afed1963670821884af67576fb933f92e (diff) | |
download | cpython-29cabd4cd77b82b573e719b1f56d24f4c19dec2e.zip cpython-29cabd4cd77b82b573e719b1f56d24f4c19dec2e.tar.gz cpython-29cabd4cd77b82b573e719b1f56d24f4c19dec2e.tar.bz2 |
Pass the release number to the tools/mktarball.sh script.
Nits.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 1aec5fd..7d8633a 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -321,7 +321,7 @@ lib-info-$(RELEASE).tar.gz: info (cd $(INFODIR); tar cf - python-???.info*) | gzip -9 >$@ latex-$(RELEASE).tar.gz: - $(srcdir)/tools/mktarball.sh + $(srcdir)/tools/mktarball.sh $(RELEASE) pdf-$(RELEASE).tar.gz: all-pdf (cd paper-$(PAPER); tar cf - $(PDFFILES)) | gzip -9 >$@ @@ -330,8 +330,8 @@ postscript-$(RELEASE).tar.gz: all-ps (cd paper-$(PAPER); tar cf - $(PSFILES)) | gzip -9 >$@ html-$(RELEASE).tar.gz: - tar cf - -C $(HTMLDIR) index.html ???/???.css ???/*.html */*.gif \ - | gzip -9 >html-$(RELEASE).tar.gz + (cd html; tar cf - index.html ???/???.css ???/*.html */*.gif) \ + | gzip -9 >$@ # convenience targets: |