diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2022-02-05 14:53:38 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2022-02-05 14:53:38 +0530 |
commit | 2fefdb9f0f74f49dfa1a7ca9783829c78adc471c (patch) | |
tree | 668511a179e9fa18d1ce4443e294090405bdd394 | |
parent | d4ad6c03d360eb897811702e88c651bd9b31dcc6 (diff) |
cerbero: Fetch auto-detected build tools too
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/797>
-rw-r--r-- | cerbero/bootstrap/build_tools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cerbero/bootstrap/build_tools.py b/cerbero/bootstrap/build_tools.py index 271b2407..959f1376 100644 --- a/cerbero/bootstrap/build_tools.py +++ b/cerbero/bootstrap/build_tools.py @@ -123,7 +123,6 @@ class BuildTools (BootstrapperBase, Fetch): def start(self, jobs=0): self.insert_python_site() - # Check and these at the last minute because we may have installed them # in system bootstrap self.recipes += self.check_build_tools() @@ -131,4 +130,5 @@ class BuildTools (BootstrapperBase, Fetch): oven.start_cooking() def fetch_recipes(self, jobs): + self.recipes += self.check_build_tools() Fetch.fetch(self.cookbook, self.recipes, False, False, False, False, jobs) |