summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier CrĂȘte <olivier.crete@collabora.com>2014-10-30 15:17:36 -0400
committerOlivier CrĂȘte <olivier.crete@collabora.com>2014-12-11 18:05:06 -0500
commit9fe7390a9efe87b4662e61e99cafee0cc920be50 (patch)
tree29165a8158853df402b2cae0a3986e5f52cfaf10
parent9321b2076f6da5f88e5135cb0684505467f232fc (diff)
harfbuzz: Don't use libicu on no-distro systems
-rw-r--r--recipes/harfbuzz.recipe3
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')