aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-02-20 08:18:24 -0800
committerandroid-build-merger <android-build-merger@google.com>2019-02-20 08:18:24 -0800
commit07f95641bc257ea84aad7fb5dd9f19e22a4accae (patch)
tree1aac15771e282d586f427cc39473151c7ac866b1
parent1b8d0b4523ef371fa758e3e3381a81fc4123a901 (diff)
parent956e233d9ab49cbf45602abaf654342cdfb4d33d (diff)
downloadbzip2-07f95641bc257ea84aad7fb5dd9f19e22a4accae.tar.gz
Merge "Make bzip2 available for the host too."
am: 956e233d9a Change-Id: I8fe6b6eba41e525856032039b8159f64aa66d9f6
-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",