From: Friedrich Beckmann Date: Tue, 14 Apr 2020 15:03:34 +0000 (+0200) Subject: svg2png: Adapted syntax to gimp 2.10.18 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp;a=commitdiff_plain;h=0149e6c64281797ea7da1679d0d9ec1c4443061a 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. --- 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)"