From 6436b39d4c9adc6f7372ce27fcd5ebff2cf3047a Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Mon, 2 Mar 2009 08:16:36 +0000 Subject: [PATCH] Fix some slight inconsistencies. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20172 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/codecs.make | 2 +- apps/plugins/plugins.make | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/codecs/codecs.make b/apps/codecs/codecs.make index e8ecc3d22d..7b56ced575 100644 --- a/apps/codecs/codecs.make +++ b/apps/codecs/codecs.make @@ -101,7 +101,7 @@ endif $(CODECDIR)/%.codec: $(CODECDIR)/%.o $(call PRINTS,LD $(@F))$(CC) $(CODECFLAGS) -o $(CODECDIR)/$*.elf \ $(filter %.o, $^) \ - $(filter %.a, $^) \ + $(filter %.a, $+) \ -lgcc $(CODECLDFLAGS) ifdef SIMVER $(SILENT)cp $(CODECDIR)/$*.elf $@ diff --git a/apps/plugins/plugins.make b/apps/plugins/plugins.make index 8be87b94c1..58e05473e7 100644 --- a/apps/plugins/plugins.make +++ b/apps/plugins/plugins.make @@ -94,8 +94,8 @@ else $(SILENT)$(OC) -O binary $(BUILDDIR)/$*.elf $@ endif -$(BUILDDIR)/%.refmap: $(BUILDDIR)/%.o $(OVERLAYREF_LDS) $(PLUGINLIB) $(PLUGINBITMAPLIB) +$(BUILDDIR)/%.refmap: $(BUILDDIR)/%.o $(APPSDIR)/plugin.h $(OVERLAYREF_LDS) $(PLUGINLIB) $(PLUGINBITMAPLIB) $(call PRINTS,LD $(@F))$(CC) $(PLUGINFLAGS) -o /dev/null \ $(filter %.o, $^) \ - $(filter %.a, $^) \ + $(filter %.a, $+) \ -lgcc $(OVERLAYLDFLAGS)