From 614188c82b3d45ea2fe69ed3432c1017d5a1acfb Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sun, 24 May 2009 12:08:27 -0400 Subject: [PATCH] Fixed compiler using NDEBUG in debug builds (bug 3815, r=fyren). --- sourcepawn/compiler/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sourcepawn/compiler/Makefile b/sourcepawn/compiler/Makefile index 4524a374..8c9f1653 100644 --- a/sourcepawn/compiler/Makefile +++ b/sourcepawn/compiler/Makefile @@ -30,7 +30,7 @@ LINK = -lgcc -static-libgcc INCLUDE = -I. -I$(SMSDK)/public/sourcepawn -CFLAGS += -DLINUX -DNDEBUG -DHAVE_STDINT_H -DAMX_ANSIONLY -DENABLE_BINRELOC -m32 +CFLAGS += -DLINUX -DHAVE_STDINT_H -DAMX_ANSIONLY -DENABLE_BINRELOC -m32 CPPFLAGS += -Wno-non-virtual-dtor -fno-exceptions -fno-rtti ################################################