summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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