diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-10-27 14:39:00 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-10-27 14:39:00 +0000 |
commit | dc9e201671f8d36da9b7b7fe87ff55e96295c71b (patch) | |
tree | 3e0397b3a8008f987c3249eb1a69bc6c07b1f72a /flash | |
parent | d1dc0bd8241bcefc776f92e855a0e15e0b734a62 (diff) | |
download | rockbox-dc9e201671f8d36da9b7b7fe87ff55e96295c71b.tar.gz rockbox-dc9e201671f8d36da9b7b7fe87ff55e96295c71b.zip |
Support for a colon-separated path in APPEXTRA
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7663 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'flash')
-rw-r--r-- | flash/bootbox/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flash/bootbox/Makefile b/flash/bootbox/Makefile index e08c26f53e..3355238632 100644 --- a/flash/bootbox/Makefile +++ b/flash/bootbox/Makefile @@ -22,8 +22,8 @@ SRC := $(shell cat SOURCES | $(CC) -DMEMORYSIZE=$(MEMORYSIZE) $(INCLUDES) $(TARG DIRS = . ifdef APPEXTRA - DIRS += $(APPEXTRA) - INCLUDES += -I$(APPEXTRA) + DIRS += $(subst :, ,$(APPEXTRA)) + INCLUDES += $(patsubst %,-I%,$(subst :, ,$(APPEXTRA))) endif CFLAGS = $(GCCOPTS) $(INCLUDES) $(TARGET) $(DEFINES) \ |