aboutsummaryrefslogtreecommitdiff
path: root/checkbuild.py
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-11-16 16:08:30 -0800
committerDan Albert <danalbert@google.com>2015-11-16 16:13:38 -0800
commitc40ed00f635349c4f563c198bb93852784f3cd32 (patch)
treed641f184293bda949bd70bc5996bafc0370c87bb /checkbuild.py
parenta0740883293b9e4710585d71db3dba820526d082 (diff)
downloadndk-c40ed00f635349c4f563c198bb93852784f3cd32.tar.gz
Move host-tools into its own directory.
We don't want the various NDK module packages to have overlapping paths. Bug: http://b/25454836 Change-Id: I94f9b153434553d518e677e53df079343e019327
Diffstat (limited to 'checkbuild.py')
-rw-r--r--checkbuild.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/checkbuild.py b/checkbuild.py
index 93ba55aaf..20329aac9 100644
--- a/checkbuild.py
+++ b/checkbuild.py
@@ -399,11 +399,11 @@ def package_host_tools(out_dir, host):
subprocess.check_call(['tar', 'xf', package_path, '-C', temp_dir])
for f in files:
- shutil.copy2(f, os.path.join(temp_dir, 'prebuilt/bin'))
+ shutil.copy2(f, os.path.join(temp_dir, 'host-tools/bin'))
package_name = 'host-tools-' + host_tag
- build_support.make_package(package_name, ['prebuilt'], out_dir,
- temp_dir, repo_prop_dir='prebuilt')
+ build_support.make_package(package_name, ['host-tools'], out_dir,
+ temp_dir, repo_prop_dir='host-tools')
finally:
shutil.rmtree(temp_dir)