From dc9e201671f8d36da9b7b7fe87ff55e96295c71b Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Thu, 27 Oct 2005 14:39:00 +0000 Subject: Support for a colon-separated path in APPEXTRA git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7663 a1c6a512-1295-4272-9138-f99709370657 --- bootloader/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bootloader/Makefile') diff --git a/bootloader/Makefile b/bootloader/Makefile index c2bc54a6da..d1a17df56a 100644 --- a/bootloader/Makefile +++ b/bootloader/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 ifndef VERSION -- cgit v1.2.3