Skip to content

Commit 93becb9

Browse files
authored
Fix: [Makefile] autodetect if GIMP is installed (#23)
As GIMP is optional, we can simply continue with the checked-in cached result.
1 parent b290808 commit 93becb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ UNIX2DOS ?= $(shell which unix2dos)
101101
UNIX2DOS_FLAGS ?= $(shell [ -n $(UNIX2DOS) ] && $(UNIX2DOS) -q --version >/dev/null 2>&1 && echo "-q" || echo "")
102102

103103
# Graphics processing
104-
GIMP ?= gimp
104+
GIMP ?= $(shell which gimp)
105105
GIMP_FLAGS ?= -n -i
106106

107107
# NML

0 commit comments

Comments
 (0)