From a0068c747b7f336f59a292ed3dd9a47305ffb868 Mon Sep 17 00:00:00 2001 From: IvanDSM Date: Sun, 10 May 2020 12:45:46 -0300 Subject: [PATCH] Fix Web build. The ifeq($(TARGET_WEB),0) check on line 49 wasn't being endif'ed properly, which caused the rest of the code up until 244 (where an incorrect endif was placed) to be ignored. This commit fixes that issue and allows web builds to work normally. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a28d093..a40dfb2 100644 --- a/Makefile +++ b/Makefile @@ -50,6 +50,7 @@ ifeq ($(TARGET_WEB),0) ifeq ($(OS),Windows_NT) WINDOWS_BUILD := 1 endif +endif # Release (version) flag defs @@ -241,7 +242,6 @@ OPT_FLAGS += $(BITS) ifeq ($(TARGET_WEB),1) OPT_FLAGS := -O2 -g4 --source-map-base http://localhost:8080/ endif -endif # Use a default opt flag for gcc, then override if RPi ifeq ($(COMPILER),gcc)