Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit c08b65b

Browse files
committed
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.
1 parent e22bfe9 commit c08b65b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/sgml/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ postgres.pdf:
177177
epub: postgres.epub
178178
postgres.epub: postgres.sgml $(ALLSGML)
179179
$(XMLLINT) --noout --valid $<
180-
$(DBTOEPUB) $<
180+
$(DBTOEPUB) -o $@ $<
181181

182182

183183
##

0 commit comments

Comments
 (0)