Skip to content
This repository has been archived by the owner on Jul 3, 2021. It is now read-only.

Commit

Permalink
🛠️ Makefile: Change deprecated Inkscape flag
Browse files Browse the repository at this point in the history
This was annoying to figure out because the Inkscape manpage still shows
`--export-png` as a valid option, even though it was removed in the last
release. It has to be `--export-file` now:

    https://wiki.inkscape.org/wiki/index.php/Using_the_Command_Line#New_options

Undocumented features… 👀

Signed-off-by: Justin W. Flory <git@jwf.io>
  • Loading branch information
jwflory committed Feb 19, 2020
1 parent 4ad6d76 commit 937c3d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/Makefile
Expand Up @@ -8,7 +8,7 @@ help:
all: help

%.png: %.svg
@inkscape --without-gui --export-area-page --export-width=1890 --export-png=$@ $<
@inkscape --without-gui --export-area-page --export-width=1890 --export-file=$@ $<

%.jpg: %.png
@convert $< $@
Expand Down

0 comments on commit 937c3d3

Please sign in to comment.