diff options
| author | Dave Chapman <dave@dchapman.com> | 2007-11-16 19:53:47 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2007-11-16 19:53:47 +0000 |
| commit | 56822cacdf08b80b6ef8397fcebe742792a037e8 (patch) | |
| tree | cc3e6f85f258c7d020d8b370257ee178f6de2705 | |
| parent | f91502f86a167c1fb5593183a1d29de7b80fa149 (diff) | |
| download | rockbox-56822cacdf08b80b6ef8397fcebe742792a037e8.zip rockbox-56822cacdf08b80b6ef8397fcebe742792a037e8.tar.gz rockbox-56822cacdf08b80b6ef8397fcebe742792a037e8.tar.bz2 rockbox-56822cacdf08b80b6ef8397fcebe742792a037e8.tar.xz | |
Remove an unneeded -iquote (which caused problems with pre 4.0.0 versions of gcc) and replace a gcc with $(CC)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15644 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | tools/rbspeex/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rbspeex/Makefile b/tools/rbspeex/Makefile index 079d06d..a4e8d53 100644 --- a/tools/rbspeex/Makefile +++ b/tools/rbspeex/Makefile @@ -13,7 +13,7 @@ endif SPEEXSRC = ../../apps/codecs/libspeex -INCLUDES = -I $(SPEEXSRC) -iquote $(SPEEXSRC) +INCLUDES = -I $(SPEEXSRC) SPEEXOPTS = -DHAVE_CONFIG_H -DROCKBOX_VOICE_ENCODER CFLAGS = $(SPEEXOPTS) $(INCLUDES) -O3 -fomit-frame-pointer -Wno-unused-parameter @@ -45,7 +45,7 @@ $(DEPFILE): $(SOURCES) echo "oo" > /dev/null ) ../rbspeexenc: $(OBJS) $(DEPFILE) - gcc -o ../rbspeexenc $(OBJS) -lm + $(CC) -o ../rbspeexenc $(OBJS) -lm %.o: $(CC) $(CFLAGS) -c $< -o $@ |