From a566d9891f16937444846f74f48682c15d4f0f6a Mon Sep 17 00:00:00 2001 From: David Perez-Suarez Date: Wed, 29 Jul 2020 14:31:56 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Work=20around=20attempt=20to=20I?= =?UTF-8?q?nkscape=20problem?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It seems Inkscape has a problem when called from the command line https://gitlab.com/inkscape/inkscape/-/issues/294 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 501092b9..a1ef96e6 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ default: _site dot $< -T png -o $@ %.png: %.svg Makefile - inkscape -z -e $@ -w 600 $< + dbus-run-session inkscape -z -e $@ -w 600 $< %.png: %.uml plantuml.jar Makefile java -Djava.awt.headless=true -jar plantuml.jar -p < $< > $@