aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-02-20 08:28:28 -0800
committerandroid-build-merger <android-build-merger@google.com>2019-02-20 08:28:28 -0800
commit115c4bb9dc7c70bd27677d1df488cd2785c9d32e (patch)
tree1aac15771e282d586f427cc39473151c7ac866b1
parent5d06bc588592eab0b49c2c4877f037b1b73ac1c1 (diff)
parent608b642bfdc24ea1cc107e82ba6197b891673eb8 (diff)
downloadbzip2-115c4bb9dc7c70bd27677d1df488cd2785c9d32e.tar.gz
Merge "Make bzip2 available for the host too." am: 956e233d9a am: 07f95641bc
am: 608b642bfd Change-Id: I30166c3eec494386a23c9e230f08df47ad5c9467
-rw-r--r--Android.bp8
1 files changed, 5 insertions, 3 deletions
diff --git a/Android.bp b/Android.bp
index 8092f56..a2023e7 100644
--- a/Android.bp
+++ b/Android.bp
@@ -45,13 +45,15 @@ cc_library {
cc_binary {
name: "bzip2",
- srcs: ["bzip2.c"],
- shared_libs: ["libbz"],
- stl: "none",
+ host_supported: true,
+
cflags: [
"-Werror",
"-Wno-unused-parameter",
],
+ shared_libs: ["libbz"],
+ srcs: ["bzip2.c"],
+ stl: "none",
symlinks: [
"bunzip2",
"bzcat",