diff options
author | Tomasz Malesinski <tomal@rockbox.org> | 2006-02-03 23:21:36 +0000 |
---|---|---|
committer | Tomasz Malesinski <tomal@rockbox.org> | 2006-02-03 23:21:36 +0000 |
commit | bcd22f000a9d26d4991a78b0f94ecb5ce323f69a (patch) | |
tree | 08e13f80b144c5bf584fe60839d88d106d5cfe9b /apps | |
parent | b3db55f427570b6bb95d0fa82454367154573d9e (diff) |
Undefined DEBUG, so that it compiles on DEBUG builds.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8553 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/codecs/libmad/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libmad/Makefile b/apps/codecs/libmad/Makefile index 5eaf9f1517..3747197f13 100644 --- a/apps/codecs/libmad/Makefile +++ b/apps/codecs/libmad/Makefile @@ -15,7 +15,7 @@ ifdef APPEXTRA endif # NOTE: FPM_ define has been moved to global.h -MADOPTS = -DNDEBUG -O2 +MADOPTS = -UDEBUG -DNDEBUG -O2 CFLAGS = $(GCCOPTS) $(MADOPTS) $(INCLUDES) $(TARGET) $(EXTRA_DEFINES) \ -DMEM=${MEMORYSIZE} $(PROFILE_OPTS) |