From ef5c9376a9108e5044ee0a69aa57e8bb1d3a8eb8 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 8 Mar 2026 20:22:21 +0000 Subject: [PATCH] Fix mistake when building with no runtime assert --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 10528f8..b70e7ec 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ endif # Disable runtime asserts ifeq ($(RUNTIME_ASSERT), false) - override BUILD_FLAGS += WAPP_NO_RUNTIME_ASSERT + override BUILD_FLAGS += -DWAPP_NO_RUNTIME_ASSERT endif ifeq ($(CC),gcc)