]> granicus.if.org Git - postgresql/commitdiff
Use Pandoc also for plain-text documentation output
authorPeter Eisentraut <peter@eisentraut.org>
Wed, 27 Mar 2019 20:12:10 +0000 (21:12 +0100)
committerPeter Eisentraut <peter@eisentraut.org>
Wed, 27 Mar 2019 20:17:16 +0000 (21:17 +0100)
The makefile rule for the (rarely used) plain-text output postgres.txt
was still written to use lynx, but in
96b8b8b6f9d8de4af01a77797273ad88c7a8e32e, where the INSTALL file was
switched to pandoc, the rest of the makefile support for lynx was
removed, so this was broken.  Rewrite the rule to also use pandoc for
postgres.txt.

doc/src/sgml/Makefile

index 2420c55681590d5d6f6cfe7cabbe292e8e2e6ed5..c40e6708761414159425c2cc014d98e6e85d63ea 100644 (file)
@@ -142,7 +142,7 @@ postgres.html: stylesheet-html-nochunk.xsl postgres.sgml $(ALLSGML)
 
 # single-page text
 postgres.txt: postgres.html
-       $(LYNX) -force_html -dump -nolist $< > $@
+       $(PANDOC) -t plain -o $@ $<
 
 
 ##