diff options
author | Dominik Wenger <domonoky@googlemail.com> | 2008-07-19 21:11:21 +0000 |
---|---|---|
committer | Dominik Wenger <domonoky@googlemail.com> | 2008-07-19 21:11:21 +0000 |
commit | 32dda1d2936fdd3c2e840cd60092bde3147455e5 (patch) | |
tree | a3981b2a1fdcf4a4f81166de444fb5da2c302869 | |
parent | 6da45d4c56c2771aa364e88ac8e2bcf124a73359 (diff) | |
download | rockbox-32dda1d2936fdd3c2e840cd60092bde3147455e5.tar.gz rockbox-32dda1d2936fdd3c2e840cd60092bde3147455e5.zip |
rbspeex: hopefully fixes compiling of rbspeexenc/dec on mac.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18096 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | tools/rbspeex/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/rbspeex/Makefile b/tools/rbspeex/Makefile index b619ce73fe..2511393833 100644 --- a/tools/rbspeex/Makefile +++ b/tools/rbspeex/Makefile @@ -27,7 +27,7 @@ ifeq ($(findstring MINGW,$(shell uname)),MINGW) CC = gcc endif -ifeq ($(findstring Darwin,$(shell uname)),Darwin) +ifdef ARCH ARCH_CMD = -arch $(ARCH) endif |