Skip to content

Commit

Permalink
gmake: bootstrap to fetch gnulib before configuring
Browse files Browse the repository at this point in the history
  • Loading branch information
nwf-msr committed Aug 21, 2024
1 parent 4c7a261 commit 455df59
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pycheribuild/projects/cross/gmake.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 455df59

Please sign in to comment.