summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/codecs/libmad/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libmad/Makefile b/apps/codecs/libmad/Makefile
index 3a7be714ea..e966fdefb5 100644
--- a/apps/codecs/libmad/Makefile
+++ b/apps/codecs/libmad/Makefile
@@ -17,8 +17,8 @@ endif
# NOTE: FPM_ define has been moved to global.h
MADOPTS = -UDEBUG -DNDEBUG
-# libmad is faster on ipods with -O instead of -O2
-ifeq ($(findstring IPOD,$(TARGET)),IPOD)
+# libmad may be faster on ipod3g with -O instead of -O2
+ifeq ($(findstring IPOD_3G,$(TARGET)),IPOD_3G)
MADOPTS += -O
else
MADOPTS += -O2