diff options
author | Fred Drake <fdrake@acm.org> | 2002-04-17 03:31:08 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-04-17 03:31:08 (GMT) |
commit | 3d0b697d70789be6fed03ef3311a1006962d260a (patch) | |
tree | 90dfcd459af7b1b5909df281f8de9e1cc7c8d95a | |
parent | bab5aa003956b7a06aa89478649c326fd8b6ecf8 (diff) | |
download | cpython-3d0b697d70789be6fed03ef3311a1006962d260a.zip cpython-3d0b697d70789be6fed03ef3311a1006962d260a.tar.gz cpython-3d0b697d70789be6fed03ef3311a1006962d260a.tar.bz2 |
Pass the -r option to getpagecounts to generate an entry for the "What's
New" document.
-rw-r--r-- | Doc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index cc537b0..bbeb2a5 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -516,7 +516,7 @@ fastwebcheck: $(ALLHTMLFILES) # Release packaging targets: paper-$(PAPER)/README: $(PSFILES) $(TOOLSDIR)/getpagecounts - cd paper-$(PAPER) && ../$(TOOLSDIR)/getpagecounts >../$@ + cd paper-$(PAPER) && ../$(TOOLSDIR)/getpagecounts -r $(RELEASE) >../$@ info-$(RELEASE).tgz: info cd $(INFODIR) && tar cf - README python.dir python-*.info* \ |