diff options
author | Dave Chapman <dave@dchapman.com> | 2005-02-16 12:47:18 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2005-02-16 12:47:18 +0000 |
commit | 562627c213f73b21ae2c70ad728b5ec131028b80 (patch) | |
tree | 9ed3db29e113e92f388d0b18929f86bff7701059 /apps | |
parent | a38947114da645af2b5eec83b5216dcf2afc35aa (diff) |
Correct typo - liba52 is in apps/codecs, not apps/plugins
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5974 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/codecs/liba52/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/codecs/liba52/Makefile b/apps/codecs/liba52/Makefile index 53e6d24dde..2785144073 100644 --- a/apps/codecs/liba52/Makefile +++ b/apps/codecs/liba52/Makefile @@ -34,9 +34,9 @@ $(OUTPUT): $(OBJS) @echo "AR $@" @$(AR) ruv $@ $+ >/dev/null 2>&1 -$(OBJDIR)/liba52/%.o: $(APPSDIR)/plugins/liba52/%.c - mkdir -p $(OBJDIR)/liba52 - $(CC) -c -O2 $(CFLAGS) -I$(APPSDIR)/plugins/liba52/ $< -o $@ +$(OBJDIR)/liba52/%.o: $(APPSDIR)/codecs/liba52/%.c + @mkdir -p $(OBJDIR)/liba52 + @$(CC) -c -O2 $(CFLAGS) -I$(APPSDIR)/codecs/liba52/ $< -o $@ include $(TOOLSDIR)/make.inc |