about summary refs log tree commit diff
path: root/src/bootstrap/bootstrap.py
diff options
context:
space:
mode:
authorHavard Eidnes <he@NetBSD.org>2025-08-24 09:39:33 +0000
committerHavard Eidnes <he@NetBSD.org>2025-08-24 09:39:33 +0000
commit2f1b6d19f180764b06a9daef88e9046d447f7055 (patch)
tree7d931b46a8988799c0cd10d47fed184dd90635d9 /src/bootstrap/bootstrap.py
parent3a2392bb082924449c87d28f5d3d8a60f309c9bf (diff)
downloadrust-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.py4
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,