Skip to content

Commit 7204fe4

Browse files
committed
Fix embarassing error
1 parent 186a170 commit 7204fe4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/bootstrap/bootstrap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def default_build_triple():
188188
return 'x86_64-pc-windows-msvc'
189189

190190
ostype = ostype.decode(default_encoding)
191-
cputype = ostype.decode(default_encoding)
191+
cputype = cputype.decode(default_encoding)
192192

193193
# The goal here is to come up with the same triple as LLVM would,
194194
# at least for the subset of platforms we're willing to target.

0 commit comments

Comments
 (0)