Skip to content

Commit 562398d

Browse files
committed
freebsd-universe: Don't run make showconfig even for verbose
This does not in fact work, due to the lack of TARGET/TARGET_ARCH, on non-FreeBSD, and is a bit meaningless anyway for universe. Fixes: 085f75f ("cheribsd: Overhaul freebsd-univere and add cheribsd-universe")
1 parent 484f91f commit 562398d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pycheribuild/projects/cross/cheribsd.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2483,8 +2483,8 @@ def compile(self, tinderbox=False, **kwargs) -> None:
24832483
self.info("Universe logs will be written to", self.universe_logdir)
24842484

24852485
build_args = self.universe_args
2486-
if self.config.verbose:
2487-
self.run_make("showconfig", options=build_args)
2486+
# NB: No make showconfig since that needs a valid TARGET/TARGET_ARCH,
2487+
# and would be specific to that architecture anyway.
24882488

24892489
fast = self.fast_rebuild
24902490
if fast and self.with_clean:

0 commit comments

Comments
 (0)