diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2012-03-06 11:59:23 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-20 17:19:09 +0100 |
commit | ceedc58c3de937333058130ac7cf41031ea33628 (patch) | |
tree | 43eff2ecf3125ff43062b52972f45dc39516ef3f /recipes/libxml2.recipe | |
parent | 3a26f51c1829d0f8b92023fc56663bcfd6def363 (diff) |
Only depend on libiconv on Windows everywhere
Diffstat (limited to 'recipes/libxml2.recipe')
-rw-r--r-- | recipes/libxml2.recipe | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes/libxml2.recipe b/recipes/libxml2.recipe index e5f579d9..f9b6f5be 100644 --- a/recipes/libxml2.recipe +++ b/recipes/libxml2.recipe @@ -4,7 +4,8 @@ from cerbero import recipe class Recipe(recipe.Recipe): name = 'libxml2' version = '2.7.8' - deps = ['libiconv'] + from cerbero.config import Platform + platform_deps = { Platform.WINDOWS: ['libiconv'] } def prepare(self): from cerbero.config import Platform |