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.
This commit is contained in:
Bill Kendrick 2023-06-13 22:18:08 -07:00
parent 38b9dc657f
commit 7febf719d0

View file

@ -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