diff options
author | Olivier CrĂȘte <olivier.crete@collabora.com> | 2014-10-30 15:17:36 -0400 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2014-12-11 18:05:06 -0500 |
commit | 9fe7390a9efe87b4662e61e99cafee0cc920be50 (patch) | |
tree | 29165a8158853df402b2cae0a3986e5f52cfaf10 | |
parent | 9321b2076f6da5f88e5135cb0684505467f232fc (diff) |
harfbuzz: Don't use libicu on no-distro systems
-rw-r--r-- | recipes/harfbuzz.recipe | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/harfbuzz.recipe b/recipes/harfbuzz.recipe index 596521aa..5b032b26 100644 --- a/recipes/harfbuzz.recipe +++ b/recipes/harfbuzz.recipe @@ -17,7 +17,8 @@ class Recipe(recipe.Recipe): files_devel = ['include/harfbuzz/*.h', 'lib/pkgconfig/harfbuzz.pc'] def prepare(self): - if self.config.target_platform != Platform.LINUX: + if self.config.target_platform != Platform.LINUX or \ + self.config.target_distro == Distro.NONE: self.configure_options += '--with-icu=no ' else: self.files_devel.append('lib/pkgconfig/harfbuzz-icu.pc') |