From 0ee136815372aaa58256b4ef89188d80a5575707 Mon Sep 17 00:00:00 2001 From: d0k3 Date: Sun, 2 Aug 2020 15:28:01 +0200 Subject: [PATCH] Fix building on Windows (cygwin) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0725655..c01ea8f 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ VRAM_DATA := data VRAM_FLAGS := --make-new --path-limit 99 --size-limit 262144 ifeq ($(OS),Windows_NT) - ifeq ($(TERM),) + ifeq ($(TERM),cygwin) PY3 := py -3 # Windows / CMD/PowerShell else PY3 := python3 # Windows / MSYS2