File tree 2 files changed +3
-3
lines changed
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):
414
414
# The goal here is to come up with the same triple as LLVM would,
415
415
# at least for the subset of platforms we're willing to target.
416
416
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' :
419
419
ostype = 'linux-android'
420
420
else :
421
421
ostype = 'unknown-linux-gnu'
Original file line number Diff line number Diff line change 9
9
# option. This file may not be copied, modified, or distributed
10
10
# except according to those terms.
11
11
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.
13
13
14
14
import os
15
15
import sys
You can’t perform that action at this time.
0 commit comments