forked from len0rd/rockbox
Fix unsafe substitutions in Makefile.
Strange things can happen in the (unlikely) case that ROOTDIR=/rockbox Change-Id: I085f928fd859b307667e8fccf40b29a9c325f7ae
This commit is contained in:
parent
65c6a14e5f
commit
b959655822
3 changed files with 17 additions and 2 deletions
|
|
@ -25,7 +25,7 @@ ifneq ($(strip $(BMP2RB_REMOTENATIVE)),)
|
|||
BMP += $(call preprocess, $(BITMAPDIR)/remote_native/SOURCES)
|
||||
endif
|
||||
|
||||
BMPOBJ = $(BMP:$(ROOTDIR)/%.bmp=$(BUILDDIR)/%.o)
|
||||
BMPOBJ = $(call full_path_subst,$(ROOTDIR)/%.bmp,$(BUILDDIR)/%.o,$(BMP))
|
||||
|
||||
BMPHFILES = $(BMPINCDIR)/usblogo.h $(BMPINCDIR)/remote_usblogo.h \
|
||||
$(BMPINCDIR)/default_icons.h $(BMPINCDIR)/remote_default_icons.h \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue