diff options
author | Edward Hervey <bilboed@bilboed.com> | 2014-05-26 10:47:06 +0200 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2014-05-26 10:48:53 +0200 |
commit | c8b1c433fc03d722de6d0db9746587ee9bd61b9c (patch) | |
tree | c766fb65d0678def2002bc8cdfdc92fc5101720d | |
parent | c6b742bf3401aa6bd7b859ccb630bc1d96774de3 (diff) |
recipes: libcroco/librsvg: Fix build on ios-universaltoreview
The same way it's done for darwin
-rw-r--r-- | recipes/libcroco.recipe | 2 | ||||
-rw-r--r-- | recipes/librsvg.recipe | 2 |
2 files changed, 2 insertions, 2 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' diff --git a/recipes/librsvg.recipe b/recipes/librsvg.recipe index ff6d0ef8..ca2c696e 100644 --- a/recipes/librsvg.recipe +++ b/recipes/librsvg.recipe @@ -22,5 +22,5 @@ class Recipe(recipe.Recipe): patches = ['librsvg/0001-Add-an-implementation-of-realpath-for-windows-to-mak.patch'] 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' |