1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Björn Stenberg 2008-11-20 12:44:49 +00:00
parent d96ce0a87d
commit 8ce3556236
2 changed files with 2 additions and 3 deletions

View file

@ -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