aboutsummaryrefslogtreecommitdiff
path: root/build/lib
diff options
context:
space:
mode:
authorDan Albert <danalbert@google.com>2015-11-04 10:26:18 -0800
committerDan Albert <danalbert@google.com>2015-11-04 16:57:12 -0800
commit7fb6fe2f12fc3a654f1eb2475758e2bd1796bf35 (patch)
tree560f9402a5d0d79516661a95f4d545565030cf64 /build/lib
parent3111269adf78e764ba5b4c7a904b93430a44dbec (diff)
downloadndk-7fb6fe2f12fc3a654f1eb2475758e2bd1796bf35.tar.gz
Build final host-tools package.
This is the conglomeration of all the common host tools. The way things are organized right now, these are essentially all required. Some of these things can be broken out. Android Studio users don't need GDB, Make, or Awk. Change-Id: I35f7a3bdb7eab4b9069f99b30a522062ada55342
Diffstat (limited to 'build/lib')
-rw-r--r--build/lib/build_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/lib/build_support.py b/build/lib/build_support.py
index 390091e7a..0c739da55 100644
--- a/build/lib/build_support.py
+++ b/build/lib/build_support.py
@@ -205,7 +205,7 @@ def make_package(name, files, out_dir, root_dir, repo_prop_dir=''):
name = os.path.basename(path)
_, ext = os.path.splitext(name)
- return ext in ignored_extensions or name.startswith('.')
+ return ext in ignored_extensions or name == '.gitignore'
with tarfile.open(path, 'w:bz2') as tarball:
for f in files: