[Python-checkins] r60808 - python/tags/r252c1/Doc/Makefile

fred.drake python-checkins at python.org
Thu Feb 14 15:25:24 CET 2008


Author: fred.drake
Date: Thu Feb 14 15:25:24 2008
New Revision: 60808

Modified:
   python/tags/r252c1/Doc/Makefile
Log:
mksourcepkg is not getting the tag right by itself, so recording it in the
Makefile explicitly for now


Modified: python/tags/r252c1/Doc/Makefile
==============================================================================
--- python/tags/r252c1/Doc/Makefile	(original)
+++ python/tags/r252c1/Doc/Makefile	Thu Feb 14 15:25:24 2008
@@ -564,14 +564,14 @@
 		| bzip2 -9 >../$@
 
 latex-$(RELEASE).tgz:
-	$(PYTHON) $(TOOLSDIR)/mksourcepkg --gzip $(RELEASE)
+	$(PYTHON) $(TOOLSDIR)/mksourcepkg --gzip $(RELEASE) tags/r252c1
 
 latex-$(RELEASE).tar.bz2:
-	$(PYTHON) $(TOOLSDIR)/mksourcepkg --bzip2 $(RELEASE)
+	$(PYTHON) $(TOOLSDIR)/mksourcepkg --bzip2 $(RELEASE) tags/r252c1
 
 latex-$(RELEASE).zip:
 	rm -f $@
-	$(PYTHON) $(TOOLSDIR)/mksourcepkg --zip $(RELEASE)
+	$(PYTHON) $(TOOLSDIR)/mksourcepkg --zip $(RELEASE) tags/r252c1
 
 pdf-$(PAPER)-$(RELEASE).tar: $(PDFFILES)
 	rm -f $@
@@ -700,7 +700,7 @@
 	$(TOOLSDIR)/mkpkglist >pkglist.html
 
 distfiles:	paperdist edist
-	$(TOOLSDIR)/mksourcepkg --bzip2 --zip $(RELEASE)
+	$(TOOLSDIR)/mksourcepkg --bzip2 --zip $(RELEASE) tags/r252c1
 	$(TOOLSDIR)/mkpkglist >pkglist.html
 
 


More information about the Python-checkins mailing list