Fix coding styles
This commit is contained in:
parent
3ee366257c
commit
71b67534a8
2 changed files with 4 additions and 4 deletions
|
@ -164,12 +164,12 @@ def update_clang():
|
||||||
|
|
||||||
|
|
||||||
def download_sysroot(target_arch):
|
def download_sysroot(target_arch):
|
||||||
python = sys.executable;
|
|
||||||
if target_arch == 'ia32':
|
if target_arch == 'ia32':
|
||||||
target_arch = 'i386'
|
target_arch = 'i386'
|
||||||
if target_arch == 'x64':
|
if target_arch == 'x64':
|
||||||
target_arch = 'amd64'
|
target_arch = 'amd64'
|
||||||
execute_stdout([python, os.path.join(SOURCE_ROOT, 'script', 'install-sysroot.py'),
|
execute_stdout([sys.executable,
|
||||||
|
os.path.join(SOURCE_ROOT, 'script', 'install-sysroot.py'),
|
||||||
'--arch', target_arch])
|
'--arch', target_arch])
|
||||||
|
|
||||||
def create_chrome_version_h():
|
def create_chrome_version_h():
|
||||||
|
|
|
@ -33,8 +33,8 @@ fi
|
||||||
|
|
||||||
python2=$(which python2)
|
python2=$(which python2)
|
||||||
if [ ! -x "$python2" ] ; then
|
if [ ! -x "$python2" ] ; then
|
||||||
python2=python
|
python2=python
|
||||||
fi
|
fi
|
||||||
|
|
||||||
rewrite=`dirname $0`/rewrite_dirs.py
|
rewrite=`dirname $0`/rewrite_dirs.py
|
||||||
package=${!#}
|
package=${!#}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue