aboutsummaryrefslogtreecommitdiff
path: root/checkbuild.py
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-11-16 11:16:44 -0800
committerDan Albert <danalbert@google.com>2015-11-16 11:19:49 -0800
commit88cec601244ab22c9ffcece4a2cf326a6bc1f12b (patch)
tree4cbdd1271fff68ee914d7adc81147ddff46303aa /checkbuild.py
parentcbca676382efac5b09cc106bd05e8109bdb6b478 (diff)
downloadndk-88cec601244ab22c9ffcece4a2cf326a6bc1f12b.tar.gz
Add python_packages to packaging, rename to match.
Bug: http://b/25561370 Change-Id: If9abdd593ef631838538cb00984e10ceb400f255
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 7d78b5aa2..edfdb5982 100644
--- a/checkbuild.py
+++ b/checkbuild.py
@@ -51,7 +51,7 @@ ALL_MODULES = {
'native_app_glue',
'ndk_helper',
'platforms',
- 'python_packages',
+ 'python-packages',
'stlport',
'tests',
}
@@ -501,7 +501,7 @@ def build_python_packages(out_dir, _):
for f in files:
copy(f)
files = [os.path.basename(path) for path in files]
- build_support.make_package('python_packages', files, out_dir, temp_dir,
+ build_support.make_package('python-packages', files, out_dir, temp_dir,
repo_prop_dir='python-packages')
finally:
shutil.rmtree(temp_dir)
@@ -556,7 +556,7 @@ def main():
('native_app_glue', build_native_app_glue),
('ndk_helper', build_ndk_helper),
('platforms', build_platforms),
- ('python_packages', build_python_packages),
+ ('python-packages', build_python_packages),
('stlport', build_stlport),
('tests', build_tests),
])