Force name of ICU to differentiate icu_native from icu_cross-compile.

This commit is contained in:
Matthieu Gautier 2017-02-22 14:40:53 +01:00
parent cbb0ce83b5
commit 83d6d00acd
1 changed files with 2 additions and 0 deletions

View File

@ -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']