diff options
author | Moritz Fago <github@mfago.org> | 2018-01-17 12:18:15 +0100 |
---|---|---|
committer | Moritz Fago <github@mfago.org> | 2018-01-17 12:18:15 +0100 |
commit | 1a4014d483f6110e18d6622cabbad21cba3b5191 (patch) | |
tree | 5b7da716ee5084a4d1e1f2629a84dc684074a706 | |
parent | 0db16882c7ff664d4ca53054202b229a96f5883c (diff) |
fix inkscape errors: no such filefix_inkscape
Inkscape on MacOS braucht absolute Pfade, da es sonst die Dateien nicht finden kann.
-rw-r--r-- | standorte/mercator/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/standorte/mercator/Makefile b/standorte/mercator/Makefile index 19296c2..5b8bed7 100644 --- a/standorte/mercator/Makefile +++ b/standorte/mercator/Makefile @@ -1,7 +1,7 @@ .SUFFIXES: .svg .pdf .svg.pdf: $< - inkscape -D -z --file=$< --export-pdf=$@ --export-latex + inkscape -D -z --file=$(abspath $(<)) --export-pdf=$(abspath $(@)) --export-latex all: gnuplot mercator-calculations.pdf mercator-dach.pdf pdflatex antrag.tex |