diff options
author | Fred Drake <fdrake@acm.org> | 1999-08-26 17:57:18 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-08-26 17:57:18 (GMT) |
commit | 1f33292542ac4124808a83de2362fbe9c61b4875 (patch) | |
tree | 9386b9adb1492b7d0a0728f4f8028fc3320a5768 | |
parent | 3cf4eb4e3dfb5db97b3ac83bccdc5a0d269ce0e6 (diff) | |
download | cpython-1f33292542ac4124808a83de2362fbe9c61b4875.zip cpython-1f33292542ac4124808a83de2362fbe9c61b4875.tar.gz cpython-1f33292542ac4124808a83de2362fbe9c61b4875.tar.bz2 |
Remove use of fixgenents.sh; no longer needed.
-rw-r--r-- | Doc/tools/sgmlconv/make.rules | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Doc/tools/sgmlconv/make.rules b/Doc/tools/sgmlconv/make.rules index 24f8ffe..84c8f31 100644 --- a/Doc/tools/sgmlconv/make.rules +++ b/Doc/tools/sgmlconv/make.rules @@ -5,7 +5,6 @@ DOCFIXER= $(TOOLSDIR)/sgmlconv/docfixer.py ESIS2ML= $(TOOLSDIR)/sgmlconv/esis2sgml.py -FIXGES= $(TOOLSDIR)/sgmlconv/fixgenents.sh LATEX2ESIS= $(TOOLSDIR)/sgmlconv/latex2esis.py CONVERSION= $(TOOLSDIR)/sgmlconv/conversion.xml @@ -26,8 +25,8 @@ ESISTOOLS= $(TOOLSDIR)/sgmlconv/esistools.py $(ESISTARGETS): $(LATEX2ESIS) $(DOCFIXER) $(ESISTOOLS) $(CONVERSION) # This variant is easier to work with while debugging the conversion spec: #$(ESISTARGETS): $(LATEX2ESIS) $(DOCFIXER) $(ESISTOOLS) -$(SGMLTARGETS): $(ESIS2ML) $(FIXGES) -$(XMLTARGETS): $(ESIS2ML) $(FIXGES) +$(SGMLTARGETS): $(ESIS2ML) +$(XMLTARGETS): $(ESIS2ML) .SUFFIXES: .esis .sgml .tex .xml @@ -38,10 +37,10 @@ $(XMLTARGETS): $(ESIS2ML) $(FIXGES) rm temp.esis .esis.sgml: - $(ESIS2ML) --sgml --autoclose para $< | $(FIXGES) >$@ + $(ESIS2ML) --sgml --autoclose para $< $@ .esis.xml: - $(ESIS2ML) --xml $< | $(FIXGES) >$@ + $(ESIS2ML) --xml $< $@ clean: |