bootstrap.py: follow up tidy output from CI.

I thought tidy would be more allergic to 80-coloumn overflow,
but so be it.
This commit is contained in:
Havard Eidnes 2025-08-23 21:40:19 +00:00
parent 45bcbd99a5
commit 3a2392bb08

View File

@ -314,8 +314,9 @@ def default_build_triple(verbose):
# ON NetBSD, use `uname -p` to set the CPU type
if kernel == 'NetBSD':
cputype = subprocess.check_output(
['uname', '-p']).strip().decode(default_encoding)
cputype = (
subprocess.check_output(['uname', '-p']).strip().decode(default_encoding)
)
# The goal here is to come up with the same triple as LLVM would,
# at least for the subset of platforms we're willing to target.