Android: Fix hs20-osu-client build on Android 5.0
The LOCAL_EXPORT_C_INCLUDE_DIRS from ICU did not seem to fully resolve the build (e.g., "mm -B" failed to build, but following that with "mm" allowed the build to complete). For now, add the include directory manually here for Android 5.0. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
a926295a55
commit
dbd10da810
1 changed files with 9 additions and 0 deletions
|
@ -15,6 +15,15 @@ INCLUDES += external/webkit/Source/WebKit/gtk
|
||||||
# headers to the include path by hand.
|
# headers to the include path by hand.
|
||||||
ifeq ($(wildcard external/icu),)
|
ifeq ($(wildcard external/icu),)
|
||||||
INCLUDES += external/icu4c/common
|
INCLUDES += external/icu4c/common
|
||||||
|
else
|
||||||
|
# The LOCAL_EXPORT_C_INCLUDE_DIRS from ICU did not seem to fully resolve the
|
||||||
|
# build (e.g., "mm -B" failed to build, but following that with "mm" allowed
|
||||||
|
# the build to complete). For now, add the include directory manually here for
|
||||||
|
# Android 5.0.
|
||||||
|
ver = $(filter 5.0%,$(PLATFORM_VERSION))
|
||||||
|
ifneq (,$(strip $(ver)))
|
||||||
|
INCLUDES += external/icu/icu4c/source/common
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue