From 72e3d5c38cd692fb159dd2760688c98c90539fac Mon Sep 17 00:00:00 2001 From: orbea Date: Fri, 29 Dec 2017 11:00:53 -0800 Subject: [PATCH] Makefile: Fix debug builds. (#5989) RetroArch builds debug builds by default after commit https://github.com/libretro/RetroArch/commit/ec4b0f90896d9cca2b9eaa0df0e9127b3ca5445d This is very bad and breaks ./configure && make. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6522fe76bf..b820c54233 100644 --- a/Makefile +++ b/Makefile @@ -64,7 +64,7 @@ ifneq ($(V),1) Q := @ endif -ifneq ($(DEBUG), 0) +ifeq ($(DEBUG), 1) OPTIMIZE_FLAG = -O0 -g else OPTIMIZE_FLAG = -O3 -ffast-math