diff options
author | Edward Hervey <bilboed@bilboed.com> | 2014-05-26 10:47:06 +0200 |
---|---|---|
committer | Thibault Saunier <tsaunier@gnome.org> | 2014-06-16 14:44:40 +0200 |
commit | 7af9eb2e4ab94225eee2a6b4d2dc1dfa2034f702 (patch) | |
tree | bbf9bfe7df900a7b7da1183634b869c8513ef6bf /recipes/libcroco.recipe | |
parent | 1450b08c7b0c7bcd962e134aff69cee38df81745 (diff) |
recipes: libcroco/librsvg: Fix build on ios-universal
The same way it's done for darwin
Diffstat (limited to 'recipes/libcroco.recipe')
-rw-r--r-- | recipes/libcroco.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/libcroco.recipe b/recipes/libcroco.recipe index 9db7e28a..19acf714 100644 --- a/recipes/libcroco.recipe +++ b/recipes/libcroco.recipe @@ -13,5 +13,5 @@ class Recipe(recipe.Recipe): 'lib/pkgconfig/libcroco-0.6.pc'] def prepare(self): - if self.config.target_platform == Platform.DARWIN: + if self.config.target_platform in [Platform.DARWIN, Platform.IOS]: self.configure_options += ' --disable-Bsymbolic' |