diff options
author | Jens Arnold <amiconn@rockbox.org> | 2009-04-11 21:29:40 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2009-04-11 21:29:40 +0000 |
commit | ac0722da742426f36fda973a477e50ebb493ea21 (patch) | |
tree | 556d458780a5889d80193bda39f32e11098b90ea /tools | |
parent | 238337087e381f4bfc34d34797b4ce4ee2edc6b7 (diff) |
Fix 'make fullinstall'
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20689 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rw-r--r-- | tools/root.make | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/root.make b/tools/root.make index 3b50ae3825..9f4890e1f4 100644 --- a/tools/root.make +++ b/tools/root.make @@ -82,7 +82,7 @@ endif # bootloader OBJ := $(SRC:.c=.o) OBJ := $(OBJ:.S=.o) OBJ += $(BMP:.bmp=.o) -OBJ := $(subst $(ROOTDIR),$(BUILDDIR),$(OBJ)) +OBJ := $(subst $(ROOTDIR),$(BUILDDIR),$(OBJ)) build: $(TOOLS) $(BUILDDIR)/$(BINARY) $(CODECS) $(ROCKS) $(ARCHOSROM) $(RBINFO) @@ -275,7 +275,7 @@ install: fullinstall: @echo "Installing a full setup in your '$(PREFIX)' dir" $(SILENT)for f in `cat $(BUILDDIR)/apps/features`; do feat="$$feat:$$f" ; done; \ - $(TOOLSDIR)/buildzip.pl $(VERBOSEOPT) -m \"$(MODELNAME)\" -i \"$(TARGET_ID)\" $(INSTALL) -z "zip -r0"-r "$(ROOTDIR)" --rbdir="$(RBDIR)" -f 2 $(TARGET) $(BINARY) + $(TOOLSDIR)/buildzip.pl $(VERBOSEOPT) -m "$(MODELNAME)" -i "$(TARGET_ID)" $(INSTALL) -z "zip -r0" -r "$(ROOTDIR)" --rbdir="$(RBDIR)" -f 2 $(TARGET) $(BINARY) help: @echo "A few helpful make targets" |