From df6c9941ead23aa455b562b538516644ce6a0f1c Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Thu, 14 Sep 2017 11:27:03 -0700 Subject: Don't use TMPDIR when building stlport. Test: TMPDIR=foo ./checkbuild.py --module stlport Bug: None Change-Id: If750217d31ae4660b771b025574479439c2b9bbb --- sources/cxx-stl/stlport/build.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sources') diff --git a/sources/cxx-stl/stlport/build.py b/sources/cxx-stl/stlport/build.py index 9cc166b8b..44b7c4541 100755 --- a/sources/cxx-stl/stlport/build.py +++ b/sources/cxx-stl/stlport/build.py @@ -45,6 +45,7 @@ def main(args): print('Building stlport for ABIs: {}'.format(' '.join(abis))) + build_dir = os.path.join(args.out_dir, 'stlport') abis_arg = '--abis={}'.format(','.join(abis)) ndk_dir_arg = '--ndk-dir={}'.format(build_support.ndk_path()) script = build_support.ndk_path('build/tools/build-cxx-stl.sh') @@ -52,6 +53,7 @@ def main(args): 'bash', script, '--stl=stlport', abis_arg, ndk_dir_arg, build_support.jobs_arg(), build_support.toolchain_path(), '--with-debug-info', '--llvm-version=3.6', + '--build-dir={}'.format(build_dir), ] build_support.build(build_cmd, args) -- cgit v1.2.3