Skip to content

Commit a732a2b

Browse files
committed
Makefile: fix syntax in conditional
1 parent e6622b8 commit a732a2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ DST=_site
1212
# (https://stackoverflow.com/a/4933395)
1313
PYTHON3_EXE := $(shell which python3 2>/dev/null)
1414
ifneq (, $(PYTHON3_EXE))
15-
ifeq $(,findstring Microsoft/WindowsApps/python3,$(subst \,/,$(PYTHON3_EXE)))
15+
ifeq $(,$(findstring Microsoft/WindowsApps/python3,$(subst \,/,$(PYTHON3_EXE))))
1616
PYTHON := python3
1717
endif
1818
endif

0 commit comments

Comments
 (0)