diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2019-03-27 21:12:10 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2019-03-27 21:17:16 +0100 |
commit | 2488ea7a9056ab4c0f1bbf56548e829fa40f9c4c (patch) | |
tree | 4b89d4e719df42e39823208eb8cc90f75649b24b | |
parent | a63b29a1dea0ce4e95f682f9d0b36994f2fcf43e (diff) | |
download | postgresql-2488ea7a9056ab4c0f1bbf56548e829fa40f9c4c.tar.gz postgresql-2488ea7a9056ab4c0f1bbf56548e829fa40f9c4c.zip |
Use Pandoc also for plain-text documentation output
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.
-rw-r--r-- | doc/src/sgml/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index 2420c556815..c40e6708761 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -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 $@ $< ## |