From e795dd107ec6dfdaf879beb9ae1b84f97a82bc1c Mon Sep 17 00:00:00 2001 From: nhmall Date: Fri, 4 Feb 2022 20:26:05 -0500 Subject: [PATCH] fix Makefile.mingw32 --- sys/windows/Makefile.mingw32 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/windows/Makefile.mingw32 b/sys/windows/Makefile.mingw32 index ec4e5c844..5ac9e0fc0 100644 --- a/sys/windows/Makefile.mingw32 +++ b/sys/windows/Makefile.mingw32 @@ -82,11 +82,11 @@ LUAVER=$(LUA_VERSION) endif # if GIT=1 is passed on the make command, allow use of git and internet -if "$(GIT)" "1" +ifeq "$(GIT)" "1" INTERNET_AVAILABLE=Y GIT_AVAILABLE=Y endif -if "$(git)" "1" +ifeq "$(git)" "1" INTERNET_AVAILABLE=Y GIT_AVAILABLE=Y endif