diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-06 12:22:28 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-20 17:19:09 +0100 |
commit | 1673dfd5651d6db2af958ce14bf4ad2edf740cec (patch) | |
tree | f45f5dd1061d7a92df74e3e4773b518d13c1b1db /recipes/wavpack.recipe | |
parent | dea8cf2fdf6f2f600f09e56ebfb74020bc8781b2 (diff) |
Remove imports from the recipes
Diffstat (limited to 'recipes/wavpack.recipe')
-rw-r--r-- | recipes/wavpack.recipe | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/recipes/wavpack.recipe b/recipes/wavpack.recipe index 09aaa434..6473a229 100644 --- a/recipes/wavpack.recipe +++ b/recipes/wavpack.recipe @@ -4,10 +4,8 @@ from cerbero import recipe class Recipe(recipe.Recipe): name = 'wavpack' version = '4.60.1' - from cerbero.config import Platform platform_deps = { Platform.WINDOWS: ['libiconv'] } def prepare(self): - from cerbero.config import Platform if self.config.target_platform == Platform.WINDOWS: - config_sh = 'export LDFLAGS="$LDFLAGS -liconv"; ./configure' + config_sh = 'export LDFLAGS="$LDFLAGS -liconv"; ./configure' |