diff options
author | Peter Eisentraut | 2019-02-21 14:39:37 +0000 |
---|---|---|
committer | Peter Eisentraut | 2019-02-21 14:43:28 +0000 |
commit | 7aa00d2464b4e14d553e8a64adacfe9741939e14 (patch) | |
tree | 16eabff0848fd2f07b4bbf09ce9653b187b5e85e | |
parent | fa86238f1eac5b1bfb3887d2deb138f53da82c9b (diff) |
Fix dbtoepub output file name
In previous releases, the input file of dbtoepub was postgres.xml, and
dbtoepub knows to derive the output file name postgres.epub from that
automatically. But now the intput file is postgres.sgml (since
postgres.sgml is itself an XML file and we no longer need the
intermediate postgres.xml file), but dbtoepub doesn't know how to deal
with the .sgml suffix, so the automatically derived output file name
becomes postgres.sgml.epub. Fix by adding an explicit -o option.
-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 8326c7c673..2420c55681 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -171,7 +171,7 @@ postgres.pdf: epub: postgres.epub postgres.epub: postgres.sgml $(ALLSGML) $(XMLLINT) --noout --valid $< - $(DBTOEPUB) $< + $(DBTOEPUB) -o $@ $< ## |