From 7febf719d02e9c78d4554d2388d793726e19b0af Mon Sep 17 00:00:00 2001 From: Bill Kendrick Date: Tue, 13 Jun 2023 22:18:08 -0700 Subject: [PATCH] Thumbnail Makefile targets quotes around paths Wrap new $PATH stuff done (to get dummy 'inkscape' used, for rsvgconvert purposes) in quotes to try and help with build problems Shin-ichi had with the Windows version. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a7c41fdb4..331604b18 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ # Various contributors (see AUTHORS.txt) # https://tuxpaint.org/ -# June 14, 2002 - June 12, 2023 +# June 14, 2002 - June 13, 2023 # The version number, for release: @@ -886,7 +886,7 @@ echo-thumb-starters: @echo "# Don't let ImageMagick use Inkscape; use rsvgconvert instead" > ./inkscape @echo "exit 1" >> ./inkscape @chmod 755 ./inkscape - @(eval export PATH=$(shell pwd):$(PATH)) + @(eval export PATH="$(shell pwd)":"$(PATH)") # Create thumbnails for starters .PHONY: thumb-starters @@ -944,7 +944,7 @@ echo-thumb-templates: @echo "# Don't let ImageMagick use Inkscape; use rsvgconvert instead" > ./inkscape @echo "exit 1" >> ./inkscape @chmod 755 ./inkscape - @(eval export PATH=$(shell pwd):$(PATH)) + @(eval export PATH="$(shell pwd)":"$(PATH)") # Create thumbnails for templates .PHONY: thumb-templates