[Python-checkins] r66537 - doctools/trunk/sphinx/texinputs/Makefile

georg.brandl python-checkins at python.org
Sun Sep 21 10:22:55 CEST 2008


Author: georg.brandl
Date: Sun Sep 21 10:22:55 2008
New Revision: 66537

Log:
One more fix.


Modified:
   doctools/trunk/sphinx/texinputs/Makefile

Modified: doctools/trunk/sphinx/texinputs/Makefile
==============================================================================
--- doctools/trunk/sphinx/texinputs/Makefile	(original)
+++ doctools/trunk/sphinx/texinputs/Makefile	Sun Sep 21 10:22:55 2008
@@ -11,7 +11,7 @@
 all-pdf: $(ALLPDF)
 all-dvi: $(ALLDVI)
 all-ps: all-dvi
-	for f in *.dvi; do dvips $f; done
+	for f in *.dvi; do dvips $$f; done
 
 zip: all-$(FMT)
 	mkdir $(ARCHIVEPREFIX)docs-$(FMT)


More information about the Python-checkins mailing list