From ab7e6bb2f06629b0c6ff0d3a92f3fbefba1d5553 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 16 Apr 2021 15:55:07 +0100 Subject: [PATCH] Makefile: Go back to use of $(INKSCAPE) Signed-off-by: Ian Jackson --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fa09d22b..20b48769 100644 --- a/Makefile +++ b/Makefile @@ -57,7 +57,7 @@ ifndef INKSCAPE_EXTENSIONS INKSCAPE ?= inkscape # inkscape 0.92.4: --extension-directory works, no --system-data-directory # inkscape 1.0.2: --system-data-directory, no --extension-directory -INKSCAPE_EXTENSIONS := $(shell set -e; { sdd=$$( inkscape --system-data-directory ) && echo "$$sdd/extensions"; } || inkscape --extension-directory ) +INKSCAPE_EXTENSIONS := $(shell set -e; { sdd=$$( $(INKSCAPE) --system-data-directory ) && echo "$$sdd/extensions"; } || $(INKSCAPE) --extension-directory ) endif RECOLOUR_SVG ?= $(INKSCAPE_EXTENSIONS)/color_replace.py -- 2.30.2