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)