Fix build system not respecting TOOLSET
It seems that 'toolset=' in tools/configure was set but not used, with the build system only generating a hardcoded set of tools. This change fixes the issue by exporting the required tools in the TOOLSET variable, and having root.make append those to the TOOLS list. Change-Id: I07024bdf1dd2260c32cfeecaba0d3bb5bf00346d
This commit is contained in:
parent
96019d23aa
commit
6224efb238
2 changed files with 2 additions and 0 deletions
1
tools/configure
vendored
1
tools/configure
vendored
|
@ -4816,6 +4816,7 @@ export ANDROID_ARCH=${ANDROID_ARCH}
|
|||
export ANDROID_NDK_PATH=${ANDROID_NDK_PATH}
|
||||
export ANDROID_SDK_PATH=${ANDROID_SDK_PATH}
|
||||
export ANDROID_PLATFORM_VERSION=${ANDROID_PLATFORM_VERSION}
|
||||
export TOOLSET=${toolset}
|
||||
|
||||
CONFIGURE_OPTIONS=${cmdline}
|
||||
|
||||
|
|
|
@ -23,6 +23,7 @@ TOOLS = $(TOOLSDIR)/rdf2binary $(TOOLSDIR)/convbdf \
|
|||
$(TOOLSDIR)/codepages $(TOOLSDIR)/scramble $(TOOLSDIR)/bmp2rb \
|
||||
$(TOOLSDIR)/uclpack $(TOOLSDIR)/mkboot $(TOOLSDIR)/iaudio_bl_flash.c \
|
||||
$(TOOLSDIR)/iaudio_bl_flash.h
|
||||
TOOLS += $(foreach tool,$(TOOLSET),$(TOOLSDIR)/$(tool))
|
||||
|
||||
|
||||
ifeq (,$(PREFIX))
|
||||
|
|
Loading…
Reference in a new issue