summaryrefslogtreecommitdiff
path: root/recipes/sbc.recipe
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2020-09-30 22:26:19 +0530
committerGStreamer Merge Bot <gitlab-merge-bot@gstreamer-foundation.org>2020-09-30 20:25:25 +0000
commitb6095c7d9f134f4a13476b2cbccd4599f29e42cc (patch)
treea679a2b6ef91b3d62bce892fc494e126e1d9e887 /recipes/sbc.recipe
parenta05e5373ec68d030adabdac724870cea3fd43c71 (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/sbc.recipe')
-rw-r--r--recipes/sbc.recipe4
1 files changed, 1 insertions, 3 deletions
diff --git a/recipes/sbc.recipe b/recipes/sbc.recipe
index 12f73bf5..119abcbe 100644
--- a/recipes/sbc.recipe
+++ b/recipes/sbc.recipe
@@ -15,9 +15,7 @@ class Recipe(recipe.Recipe):
'sbc/0003-sbc.h-Define-ssize_t-when-building-with-MSVC.patch',]
def prepare(self):
- if self.config.platform == Platform.WINDOWS:
- self.override_libtool = False
- else:
+ if self.config.platform != Platform.WINDOWS:
self.autoreconf = True
async def compile(self):