summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2008-11-20 12:44:49 +0000
committerBjörn Stenberg <bjorn@haxx.se>2008-11-20 12:44:49 +0000
commit8ce3556236d7dac3fd076b846b64ae88597a0991 (patch)
tree5d1085b5f8a602234ea1ea512b7afb8f77a9a0dc /apps
parentd96ce0a87de7fd09322cc0e9d6b698282c4200a7 (diff)
Bug fix again. Moved cp outside of $(shell) to force make to run it sequentially.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19149 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/codecs/codecs.make3
-rw-r--r--apps/plugins/plugins.make2
2 files changed, 2 insertions, 3 deletions
diff --git a/apps/codecs/codecs.make b/apps/codecs/codecs.make
index 4a73f333ac..142b25789c 100644
--- a/apps/codecs/codecs.make
+++ b/apps/codecs/codecs.make
@@ -99,8 +99,7 @@ $(CODECDIR)/%.codec: $(CODECDIR)/%.o
$(filter %.a, $^) \
-lgcc $(CODECLDFLAGS)
ifdef SIMVER
- $(SILENT)$(shell cp $(CODECDIR)/$*.elf $@)
+ $(SILENT)cp $(CODECDIR)/$*.elf $@
else
$(SILENT)$(OC) -O binary $(CODECDIR)/$*.elf $@
endif
-
diff --git a/apps/plugins/plugins.make b/apps/plugins/plugins.make
index bb77f7de6c..1efd513396 100644
--- a/apps/plugins/plugins.make
+++ b/apps/plugins/plugins.make
@@ -74,7 +74,7 @@ $(BUILDDIR)/%.rock: $(BUILDDIR)/%.o $(PLUGINLINK_LDS)
$(filter %.a, $^) \
-lgcc $(PLUGINLDFLAGS)
ifdef SIMVER
- $(SILENT)$(shell cp $(BUILDDIR)/$*.elf $@)
+ $(SILENT)cp $(BUILDDIR)/$*.elf $@
else
$(SILENT)$(OC) -O binary $(BUILDDIR)/$*.elf $@
endif \ No newline at end of file