[Python-checkins] r68517 - peps/trunk/Makefile
benjamin.peterson
python-checkins at python.org
Sun Jan 11 01:41:53 CET 2009
Author: benjamin.peterson
Date: Sun Jan 11 01:41:53 2009
New Revision: 68517
Log:
fix logic error which didn't include all peps in build
Modified:
peps/trunk/Makefile
Modified: peps/trunk/Makefile
==============================================================================
--- peps/trunk/Makefile (original)
+++ peps/trunk/Makefile Sun Jan 11 01:41:53 2009
@@ -10,13 +10,13 @@
.txt.html:
$(PEP2HTML) $<
-TARGETS=$(patsubst %.txt,%.html,$(wildcard pep-????.txt))
+TARGETS=$(patsubst %.txt,%.html,$(wildcard pep-????.txt)) pep-0000.html
all: pep-0000.txt $(TARGETS)
$(TARGETS): pep2html.py
-pep-0000.txt: $(wildcard pep-???[1-9].txt)
+pep-0000.txt: $(wildcard pep-????.txt)
./genpepindex.py .
install:
More information about the Python-checkins
mailing list