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:
parent
38b9dc657f
commit
7febf719d0
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
|
@ -4,7 +4,7 @@
|
||||||
# Various contributors (see AUTHORS.txt)
|
# Various contributors (see AUTHORS.txt)
|
||||||
# https://tuxpaint.org/
|
# https://tuxpaint.org/
|
||||||
|
|
||||||
# June 14, 2002 - June 12, 2023
|
# June 14, 2002 - June 13, 2023
|
||||||
|
|
||||||
|
|
||||||
# The version number, for release:
|
# The version number, for release:
|
||||||
|
|
@ -886,7 +886,7 @@ echo-thumb-starters:
|
||||||
@echo "# Don't let ImageMagick use Inkscape; use rsvgconvert instead" > ./inkscape
|
@echo "# Don't let ImageMagick use Inkscape; use rsvgconvert instead" > ./inkscape
|
||||||
@echo "exit 1" >> ./inkscape
|
@echo "exit 1" >> ./inkscape
|
||||||
@chmod 755 ./inkscape
|
@chmod 755 ./inkscape
|
||||||
@(eval export PATH=$(shell pwd):$(PATH))
|
@(eval export PATH="$(shell pwd)":"$(PATH)")
|
||||||
|
|
||||||
# Create thumbnails for starters
|
# Create thumbnails for starters
|
||||||
.PHONY: thumb-starters
|
.PHONY: thumb-starters
|
||||||
|
|
@ -944,7 +944,7 @@ echo-thumb-templates:
|
||||||
@echo "# Don't let ImageMagick use Inkscape; use rsvgconvert instead" > ./inkscape
|
@echo "# Don't let ImageMagick use Inkscape; use rsvgconvert instead" > ./inkscape
|
||||||
@echo "exit 1" >> ./inkscape
|
@echo "exit 1" >> ./inkscape
|
||||||
@chmod 755 ./inkscape
|
@chmod 755 ./inkscape
|
||||||
@(eval export PATH=$(shell pwd):$(PATH))
|
@(eval export PATH="$(shell pwd)":"$(PATH)")
|
||||||
|
|
||||||
# Create thumbnails for templates
|
# Create thumbnails for templates
|
||||||
.PHONY: thumb-templates
|
.PHONY: thumb-templates
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue