[Python-checkins] r66589 - in doctools/trunk/sphinx/texinputs: Makefile sphinx.sty

georg.brandl python-checkins at python.org
Wed Sep 24 17:29:07 CEST 2008


Author: georg.brandl
Date: Wed Sep 24 17:29:07 2008
New Revision: 66589

Log:
#17: fix Makefile syntax.


Modified:
   doctools/trunk/sphinx/texinputs/Makefile
   doctools/trunk/sphinx/texinputs/sphinx.sty

Modified: doctools/trunk/sphinx/texinputs/Makefile
==============================================================================
--- doctools/trunk/sphinx/texinputs/Makefile	(original)
+++ doctools/trunk/sphinx/texinputs/Makefile	Wed Sep 24 17:29:07 2008
@@ -34,8 +34,8 @@
 	latex '$<'
 	latex '$<'
 	latex '$<'
-	-makeindex -s python.ist $(basename '$<').idx
-	-makeindex -s python.ist $(basename 'mod$<').idx
+	-makeindex -s python.ist '$(basename $<).idx'
+	-makeindex -s python.ist '$(basename mod$<).idx'
 	latex '$<'
 	latex '$<'
 
@@ -43,8 +43,8 @@
 	pdflatex '$<'
 	pdflatex '$<'
 	pdflatex '$<'
-	-makeindex -s python.ist $(basename '$<').idx
-	-makeindex -s python.ist $(basename 'mod$<').idx
+	-makeindex -s python.ist '$(basename $<).idx'
+	-makeindex -s python.ist '$(basename mod$<).idx'
 	pdflatex '$<'
 	pdflatex '$<'
 

Modified: doctools/trunk/sphinx/texinputs/sphinx.sty
==============================================================================
--- doctools/trunk/sphinx/texinputs/sphinx.sty	(original)
+++ doctools/trunk/sphinx/texinputs/sphinx.sty	Wed Sep 24 17:29:07 2008
@@ -142,18 +142,6 @@
     \renewcommand{\headrulewidth}{0pt}
     \renewcommand{\footrulewidth}{0.4pt}
   }
-  % Redefine \cleardoublepage so that the blank page between chapters
-  % gets the plain style and not the fancy style.  This is described
-  % in the documentation for the fancyhdr package by Piet von Oostrum.
-  \@ifundefined{chapter}{}{
-    \renewcommand{\cleardoublepage}{
-      \clearpage\if at openright \ifodd\c at page\else
-      \hbox{}
-      \thispagestyle{plain}
-      \newpage
-      \if at twocolumn\hbox{}\newpage\fi\fi\fi
-    }
-  }
 }
 
 % Some custom font markup commands.


More information about the Python-checkins mailing list