diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-09-30 13:28:21 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-09-30 22:22:18 +0530 |
commit | 6ed00df103cb745e7812315c1fad63c4ef70b9e9 (patch) | |
tree | 8a233da261c412f31c6712920490c5d793caf2de /recipes/libogg.recipe | |
parent | f111503d20ae56254222b88eca1656ec2ddf1e22 (diff) |
recipes: Try to eliminate autoreconf as much as possible on Windows
autom4te seems to hang on the Windows CI runners because it needs to
use the ancient MSYS perl, so try to eliminate it and see if it helps.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/616>
Diffstat (limited to 'recipes/libogg.recipe')
-rw-r--r-- | recipes/libogg.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/libogg.recipe b/recipes/libogg.recipe index e6529349..7affaf4d 100644 --- a/recipes/libogg.recipe +++ b/recipes/libogg.recipe @@ -9,7 +9,6 @@ class Recipe(recipe.Recipe): url = 'xiph://ogg/%(name)s-%(version)s.tar.xz' tarball_checksum = 'c163bc12bc300c401b6aa35907ac682671ea376f13ae0969a220f7ddf71893fe' licenses = [{License.BSD_like: ['COPYING']}] - autoreconf = True patches = ['libogg/0001-Fix-iOS-build.patch', 'libogg/0001-include-Use-stdint-on-mac-ios.patch'] @@ -23,4 +22,5 @@ class Recipe(recipe.Recipe): # for the arm architecture shell.replace (os.path.join(self.build_dir, 'configure.ac'), {'-O4': '-O2'}) + self.autoreconf = True await super(recipe.Recipe, self).configure() |