From 83d6d00acddb0b13468aaae9d5d7a6d2ea2514bb Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Wed, 22 Feb 2017 14:40:53 +0100 Subject: [PATCH] Force name of ICU to differentiate icu_native from icu_cross-compile. --- dependencies.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dependencies.py b/dependencies.py index 38ca6f9..1a014f7 100644 --- a/dependencies.py +++ b/dependencies.py @@ -202,6 +202,7 @@ class Icu_native(Icu): force_native_build = True class Builder(Icu.Builder): + name = "icu_native" @property def build_path(self): return super().build_path+"_native" @@ -214,6 +215,7 @@ class Icu_cross_compile(Icu): dependencies = ['Icu_native'] class Builder(Icu.Builder): + name = "icu_cross-compile" @property def configure_option(self): Icu_native = self.buildEnv.targetsDict['Icu_native']