diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2020-09-30 22:26:19 +0530 |
---|---|---|
committer | GStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org> | 2020-09-30 20:25:25 +0000 |
commit | b6095c7d9f134f4a13476b2cbccd4599f29e42cc (patch) | |
tree | a679a2b6ef91b3d62bce892fc494e126e1d9e887 /recipes/libdca.recipe | |
parent | a05e5373ec68d030adabdac724870cea3fd43c71 (diff) |
bootstrap: Don't use autotools build-tools on Windows
We should never run autoreconf because it hangs on the Windows CI
runner.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/622>
Diffstat (limited to 'recipes/libdca.recipe')
-rw-r--r-- | recipes/libdca.recipe | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/recipes/libdca.recipe b/recipes/libdca.recipe index 8df00fce..c8cccdaf 100644 --- a/recipes/libdca.recipe +++ b/recipes/libdca.recipe @@ -7,7 +7,6 @@ class Recipe(recipe.Recipe): url = 'https://download.videolan.org/pub/videolan/libdca/%(version)s/libdca-%(version)s.tar.bz2' tarball_checksum = 'dba022e022109a5bacbe122d50917769ff27b64a7bba104bd38ced8de8510642' licenses = [License.GPLv2Plus] - autoreconf = True files_libs = ['libdca'] files_bins = ['extract_dca', 'extract_dcs', 'dcadec', 'dcsdec'] @@ -17,9 +16,8 @@ class Recipe(recipe.Recipe): def prepare(self): if self.config.target_platform == Platform.ANDROID: self.configure_options += ' --disable-oss' - if self.config.platform == Platform.WINDOWS: - self.override_libtool = False - self.autoreconf = False + if self.config.platform != Platform.WINDOWS: + self.autoreconf = True # Don't enable always-inline, breaks the build on macos (space is significant) self.set_env('ac_cv_c_inline', 'inline ') |