diff options
| author | Havard Eidnes <he@NetBSD.org> | 2025-08-24 09:39:33 +0000 |
|---|---|---|
| committer | Havard Eidnes <he@NetBSD.org> | 2025-08-24 09:39:33 +0000 |
| commit | 2f1b6d19f180764b06a9daef88e9046d447f7055 (patch) | |
| tree | 7d931b46a8988799c0cd10d47fed184dd90635d9 /src/bootstrap/bootstrap.py | |
| parent | 3a2392bb082924449c87d28f5d3d8a60f309c9bf (diff) | |
| download | rust-2f1b6d19f180764b06a9daef88e9046d447f7055.tar.gz rust-2f1b6d19f180764b06a9daef88e9046d447f7055.zip | |
bootstrap.py: follow up more 'tidy' insistence (string quotes).
Diffstat (limited to 'src/bootstrap/bootstrap.py')
| -rw-r--r-- | src/bootstrap/bootstrap.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bootstrap/bootstrap.py b/src/bootstrap/bootstrap.py index b4af159ab8e..2ece53eb0cc 100644 --- a/src/bootstrap/bootstrap.py +++ b/src/bootstrap/bootstrap.py @@ -313,9 +313,9 @@ def default_build_triple(verbose): kernel, cputype, processor = uname.decode(default_encoding).split(maxsplit=2) # ON NetBSD, use `uname -p` to set the CPU type - if kernel == 'NetBSD': + if kernel == "NetBSD": cputype = ( - subprocess.check_output(['uname', '-p']).strip().decode(default_encoding) + subprocess.check_output(["uname", "-p"]).strip().decode(default_encoding) ) # The goal here is to come up with the same triple as LLVM would, |
