From e26ae33758ce86c5fea5f45a38c4720359648f46 Mon Sep 17 00:00:00 2001 From: Zorchenhimer Date: Wed, 4 Nov 2020 23:20:15 -0500 Subject: [PATCH] Fix building on non-windows machines Don't default to windows if GOOS is not set. Likewise, don't default to 386 if GOARCH isn't set. Go will use the system's default values, or any values set before running `make`. --- Makefile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Makefile b/Makefile index 6dd81f3..cf476cd 100644 --- a/Makefile +++ b/Makefile @@ -13,11 +13,3 @@ include make/Makefile.common ifeq ($(OS),Windows_NT) EXT=.exe endif - -ifeq ($(GOOS),) -GOOS=windows -endif - -ifeq ($(ARCH),) -ARCH=386 -endif