From a732a2b2e6f9db3632d8c6a58eeb985b5fd12b26 Mon Sep 17 00:00:00 2001 From: Maxim Belkin Date: Mon, 9 Dec 2019 16:51:12 -0600 Subject: [PATCH] Makefile: fix syntax in conditional --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a0cad9e..f4f44d0 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ DST=_site # (https://stackoverflow.com/a/4933395) PYTHON3_EXE := $(shell which python3 2>/dev/null) ifneq (, $(PYTHON3_EXE)) - ifeq $(,findstring Microsoft/WindowsApps/python3,$(subst \,/,$(PYTHON3_EXE))) + ifeq $(,$(findstring Microsoft/WindowsApps/python3,$(subst \,/,$(PYTHON3_EXE)))) PYTHON := python3 endif endif -- 2.30.2