From: Maxim Belkin Date: Mon, 9 Dec 2019 22:51:12 +0000 (-0600) Subject: Makefile: fix syntax in conditional X-Git-Url: https://git.arvados.org/rnaseq-cwl-training.git/commitdiff_plain/a732a2b2e6f9db3632d8c6a58eeb985b5fd12b26 Makefile: fix syntax in conditional --- 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