diff options
| author | Havard Eidnes <he@NetBSD.org> | 2025-08-23 21:40:19 +0000 |
|---|---|---|
| committer | Havard Eidnes <he@NetBSD.org> | 2025-08-23 21:40:19 +0000 |
| commit | 3a2392bb082924449c87d28f5d3d8a60f309c9bf (patch) | |
| tree | fa79966c9a7272fd8ad1e94514b7748c092d7a7c /src/bootstrap/bootstrap.py | |
| parent | 45bcbd99a5479658e0f97ecc3e3ed83ecbe47712 (diff) | |
| download | rust-3a2392bb082924449c87d28f5d3d8a60f309c9bf.tar.gz rust-3a2392bb082924449c87d28f5d3d8a60f309c9bf.zip | |
bootstrap.py: follow up tidy output from CI.
I thought tidy would be more allergic to 80-coloumn overflow, but so be it.
Diffstat (limited to 'src/bootstrap/bootstrap.py')
| -rw-r--r-- | src/bootstrap/bootstrap.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index e14433dd230..b4af159ab8e 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -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. |
