diff options
-rw-r--r-- | docs-xml/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs-xml/Makefile b/docs-xml/Makefile index 717d0679fe..40a6c7b610 100644 --- a/docs-xml/Makefile +++ b/docs-xml/Makefile @@ -153,10 +153,10 @@ $(PSDIR)/%.ps: %/index.xml $(PSDIR) xslt/latex.xsl %-images-eps $(DBLATEX) $(DBLATEX_OPTIONS) -I $*/images -t ps -o $@ $< %.eps: %.svg - $(INKSCAPE) -z -f $< --export-eps=$@ + $(INKSCAPE) -z -f $(abspath $<) --export-eps=$(abspath $@) %.png: %.svg - $(INKSCAPE) -z -f $< --export-png=$@ + $(INKSCAPE) -z -f $(abspath $<) --export-png=$(abspath $@) %.eps: %.png $(PNGTOPNM) $< | $(PNMTOPS) > $@ |