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:
parent
45bcbd99a5
commit
3a2392bb08
1 changed files with 3 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue