Skip to content

Commit

Permalink
Fix embarassing error
Browse files Browse the repository at this point in the history
  • Loading branch information
jcotton42 committed May 7, 2020
1 parent 186a170 commit 7204fe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def default_build_triple():
return 'x86_64-pc-windows-msvc'

ostype = ostype.decode(default_encoding)
cputype = ostype.decode(default_encoding)
cputype = cputype.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.
Expand Down

0 comments on commit 7204fe4

Please sign in to comment.