aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-02-20 08:22:24 -0800
committerandroid-build-merger <android-build-merger@google.com>2019-02-20 08:22:24 -0800
commit608b642bfdc24ea1cc107e82ba6197b891673eb8 (patch)
tree1aac15771e282d586f427cc39473151c7ac866b1
parent386bcfc2fef0d1432aa9392f8c370f6d698634f6 (diff)
parent07f95641bc257ea84aad7fb5dd9f19e22a4accae (diff)
downloadbzip2-608b642bfdc24ea1cc107e82ba6197b891673eb8.tar.gz
Merge "Make bzip2 available for the host too." am: 956e233d9a
am: 07f95641bc Change-Id: I47f8a3f49a05af3ac79dbf7a7ee22ecf60604bf2
-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",