aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-02-20 16:10:06 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-02-20 16:10:06 +0000
commit956e233d9ab49cbf45602abaf654342cdfb4d33d (patch)
tree1aac15771e282d586f427cc39473151c7ac866b1
parentd3f226c5294865ab8c07f170067ffa48bb3413a9 (diff)
parent3a0c889cc920add29f89cfabfe56969a0d598709 (diff)
downloadbzip2-956e233d9ab49cbf45602abaf654342cdfb4d33d.tar.gz
Merge "Make bzip2 available for the host too."android-q-preview-1android-o-mr1-iot-release-1.0.10
-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",