From 455df59292ef6a3c147cfef7fb35f93ee9a6567d Mon Sep 17 00:00:00 2001 From: Nathaniel Wesley Filardo Date: Mon, 19 Aug 2024 13:43:15 +0000 Subject: [PATCH] gmake: bootstrap to fetch gnulib before configuring --- pycheribuild/projects/cross/gmake.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pycheribuild/projects/cross/gmake.py b/pycheribuild/projects/cross/gmake.py index 5ea195cd0..8b3d4f22e 100644 --- a/pycheribuild/projects/cross/gmake.py +++ b/pycheribuild/projects/cross/gmake.py @@ -54,3 +54,7 @@ def setup(self): # when the locale is something like en_GB.UTF-8. C.UTF-8 seems to # work fine, not just C, so use that for the build. self.make_args.set_env(LC_ALL="C.UTF-8") + + def configure(self, **kwargs): + self.run_cmd(self.source_dir / "bootstrap", cwd=self.source_dir) + super().configure(**kwargs)