ref: 3cf2be25909ec63417d0e860c74e7c07160cc45a
parent: a44643aeda418898739e4028d107e9ff777bb5b5
author: Martin Storsjö <martin@martin.st>
date: Fri Jan 16 08:49:52 EST 2015
Don't override the externally set CFLAGS variable in debug mode This is similar to how it is done in release mode already. The fact that this behaviour differed between release and debug can be traced back to commit cf92e8d6.
--- a/Makefile
+++ b/Makefile
@@ -48,7 +48,7 @@
CFLAGS += $(CFLAGS_OPT)
USE_ASM = Yes
else
-CFLAGS = $(CFLAGS_DEBUG)
+CFLAGS += $(CFLAGS_DEBUG)
USE_ASM = No
endif