aboutsummaryrefslogtreecommitdiffstats
path: root/build.py
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-08-25 15:20:28 -0700
committerDan Albert <danalbert@google.com>2015-08-27 14:41:15 -0700
commitaa671cf788ff28a6694ec78cf88b06e2647649e5 (patch)
treea8ee85bcc11b682b7b18e0be49aae0997d270736 /build.py
parent6dc46ff0880d773c0d021dcad8b358033b827c55 (diff)
downloadtoolchain_gcc-aa671cf788ff28a6694ec78cf88b06e2647649e5.tar.gz
toolchain_gcc-aa671cf788ff28a6694ec78cf88b06e2647649e5.tar.bz2
toolchain_gcc-aa671cf788ff28a6694ec78cf88b06e2647649e5.zip
Drop python prebuilt cruft.
We don't seem to need this. It was only used when configuring gcc, and that isn't necessary. This is probably here as a relic from when we used to build the gdb stub in this file. Change-Id: Ieaa2f3c0200b9f569842caec2157f98d3e1a9c64 (cherry picked from commit 7ab70b0aa76254c36bdbf071e2463409115ab875)
Diffstat (limited to 'build.py')
-rwxr-xr-xbuild.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/build.py b/build.py
index e76b8b91d..a8e9c7bbc 100755
--- a/build.py
+++ b/build.py
@@ -107,8 +107,7 @@ def main():
toolchain_name = '-'.join([toolchain, GCC_VERSION])
build_cmd = [
'bash', 'build-gcc.sh', toolchain_path, ndk_path, toolchain_name,
- package_dir_arg, '--verbose', try_64_arg, mingw_arg,
- '--with-python=prebuilt', jobs_arg,
+ package_dir_arg, '--verbose', try_64_arg, mingw_arg, jobs_arg,
]
subprocess.check_call(build_cmd, env=build_env)