From 0149e6c64281797ea7da1679d0d9ec1c4443061a Mon Sep 17 00:00:00 2001 From: Friedrich Beckmann Date: Tue, 14 Apr 2020 17:03:34 +0200 Subject: [PATCH] svg2png: Adapted syntax to gimp 2.10.18 The svg2png syntax for gimp does not work for gimp 2.10.18 on MacOS. I replaced the list command with the alternative syntax. --- build-aux/svg2png | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/svg2png b/build-aux/svg2png index 5c41840c51..c6165a7c55 100755 --- a/build-aux/svg2png +++ b/build-aux/svg2png @@ -3,7 +3,7 @@ comment=`cat $2` gimp -i -b "\ (let* ((image (car (gimp-file-load 1 \"$1\" \"$1\")))) - (gimp-image-attach-parasite image (list \"gimp-comment\" 0 \"$comment\")) + (gimp-image-attach-parasite image '(\"gimp-comment\" 0 \"$comment\")) (gimp-file-save 1 image (car (gimp-image-get-active-drawable image)) \"$3\" \"$3\")) (gimp-quit 1)" -- 2.30.2