diff options
author | Nils Wallménius <nils@rockbox.org> | 2009-11-29 21:41:58 +0000 |
---|---|---|
committer | Nils Wallménius <nils@rockbox.org> | 2009-11-29 21:41:58 +0000 |
commit | 5750daa2ac72428f9b5528bb12b907ffe69c78a3 (patch) | |
tree | 3b4e4729ab1242ec3c3c265b099c8019ff0b2a59 /apps/codecs/libspeex | |
parent | 3cc0796a370f59aad6d15328e576f2a2223db0c3 (diff) |
Oops, correct typo that made the previous commit useless
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23794 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/libspeex')
-rw-r--r-- | apps/codecs/libspeex/libspeex.make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libspeex/libspeex.make b/apps/codecs/libspeex/libspeex.make index 01fa5a3a3d..e25ea646c5 100644 --- a/apps/codecs/libspeex/libspeex.make +++ b/apps/codecs/libspeex/libspeex.make @@ -14,7 +14,7 @@ # disable strict aliasing optimizations for now, it gives warnings due to # some horrid typecasting SPEEXFLAGS = $(filter-out -O%, $(filter-out -fstrict-aliasing, $(CODECFLAGS))) \ - -fstrict-aliasing -DHAVE_CONFIG_H -DSPEEX_DISABLE_ENCODER \ + -fno-strict-aliasing -DHAVE_CONFIG_H -DSPEEX_DISABLE_ENCODER \ -I$(APPSDIR)/codecs/libspeex # libspeex is faster on ARM-targets with -O1 instead of -O2 |