diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-11-16 16:29:12 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-11-16 16:29:12 +0100 |
commit | fae100c98bcfb00cadae3de45c0a2c556b12040c (patch) | |
tree | a69513b682924d71596cd29a1b059fa0e9412047 /recipes/build-tools/autoconf.recipe | |
parent | 1744cdb000acb143e49b72e975a21174411f4c59 (diff) |
bootstrap: try to fix the windows build a little bit more
Diffstat (limited to 'recipes/build-tools/autoconf.recipe')
-rw-r--r-- | recipes/build-tools/autoconf.recipe | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes/build-tools/autoconf.recipe b/recipes/build-tools/autoconf.recipe index e6d59187..388245cb 100644 --- a/recipes/build-tools/autoconf.recipe +++ b/recipes/build-tools/autoconf.recipe @@ -16,3 +16,7 @@ class Recipe(recipe.Recipe): 'bin/ifnames'] files_share = ['share/autoconf'] + + def prepare(self): + if self.config.target_platform == Platform.WINDOWS: + self.deps.remove('m4') |