From e085c38b1089c2a5536ce0d0a68db4b42f7a0d8b Mon Sep 17 00:00:00 2001 From: Nameless Date: Sun, 21 Jul 2024 20:31:00 -0500 Subject: [PATCH] minor typo in Makefile for nmake, it doesn't support += --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index cfd23a50..d1de1e6a 100644 --- a/Makefile +++ b/Makefile @@ -162,11 +162,11 @@ ifdef MAKEDIR: ######################## !ifdef MAKEDIR #### Start of nmake #### !ifdef GENERATOR - CONFIGURE_FLAGS += -G"$(GENERATOR)" +CONFIGURE_FLAGS = "$(CONFIGURE_FLAGS) -G$(GENERATOR)" !endif !ifdef ARCH - CONFIGURE_FLAGS += -A"$(ARCH)" +CONFIGURE_FLAGS = "$(CONFIGURE_FLAGS) -A$(ARCH)" !endif !else #### End of nmake ####