Skip to content

Commit 2488ea7

Browse files
committed
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 96b8b8b, 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.
1 parent a63b29a commit 2488ea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/sgml/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ postgres.html: stylesheet-html-nochunk.xsl postgres.sgml $(ALLSGML)
142142

143143
# single-page text
144144
postgres.txt: postgres.html
145-
$(LYNX) -force_html -dump -nolist $< > $@
145+
$(PANDOC) -t plain -o $@ $<
146146

147147

148148
##

0 commit comments

Comments
 (0)