File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -414,8 +414,8 @@ def build_triple(self):
414414 # The goal here is to come up with the same triple as LLVM would,
415415 # at least for the subset of platforms we're willing to target.
416416 if ostype == 'Linux' :
417- os = subprocess .check_output (['uname' , '-o' ]).strip ().decode (default_encoding )
418- if os == 'Android' :
417+ os_from_sp = subprocess .check_output (['uname' , '-o' ]).strip ().decode (default_encoding )
418+ if os_from_sp == 'Android' :
419419 ostype = 'linux-android'
420420 else :
421421 ostype = 'unknown-linux-gnu'
Original file line number Diff line number Diff line change 99# option. This file may not be copied, modified, or distributed
1010# except according to those terms.
1111
12- # This file is only a "symlink" to boostrap .py, all logic should go there.
12+ # This file is only a "symlink" to bootstrap .py, all logic should go there.
1313
1414import os
1515import sys
You can’t perform that action at this time.
0 commit comments