diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-03-17 00:52:32 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-03-18 03:31:44 +0530 |
commit | 37577dc55b065bf5c6d28165e789a178b80fe54b (patch) | |
tree | 1e1870757407ff478e98e933ddb61c43be8b9287 | |
parent | d130cba464d6f8a5e0e9d4688d77178680489138 (diff) |
libmms.recipe: We do need to run aclocal on Windows
libtool: Version mismatch error. This is libtool 2.4.6, but the
libtool: definition of this LT_INIT comes from libtool 2.4.2.
libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6
libtool: and run autoconf again.
For some reason this was working earlier, but after refactoring the
ltmain.sh copying code in build.py, this is required again.
-rw-r--r-- | recipes/libmms.recipe | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/recipes/libmms.recipe b/recipes/libmms.recipe index db59d4c3..f6143b7c 100644 --- a/recipes/libmms.recipe +++ b/recipes/libmms.recipe @@ -14,10 +14,3 @@ class Recipe(recipe.Recipe): autoreconf_sh = 'aclocal' autoreconf = True - - def prepare(self): - if self.config.platform == Platform.WINDOWS: - # automake and aclocal are too old on Windows, so don't run this. - # It's only needed for Android anyway. - self.autoreconf_sh = None - self.autoreconf = False |