summaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
authorTom Cherry <tomcherry@google.com>2018-02-28 21:40:46 -0800
committerTom Cherry <tomcherry@google.com>2018-02-28 21:43:59 -0800
commit547f7318c2dd347d589617578ab558bc6a9f97a2 (patch)
treed5ce720a50fe2347c4d9f82c8c1dca9c7973ebac /init
parent28d364792ffe9131fe197c596412981ef4e1c50e (diff)
downloadcore-547f7318c2dd347d589617578ab558bc6a9f97a2.tar.gz
core-547f7318c2dd347d589617578ab558bc6a9f97a2.tar.bz2
core-547f7318c2dd347d589617578ab558bc6a9f97a2.zip
Don't build host_init_verifier on Android either
Also fixes another mac build issue... Test: linux builds still work... Change-Id: I549891c7e38729bd5fbe79f79b7345dabd9b4b28
Diffstat (limited to 'init')
-rw-r--r--init/Android.bp5
1 files changed, 4 insertions, 1 deletions
diff --git a/init/Android.bp b/init/Android.bp
index 3695b934f..31c8efb09 100644
--- a/init/Android.bp
+++ b/init/Android.bp
@@ -201,7 +201,7 @@ genrule {
name: "generated_stub_builtin_function_map",
out: ["generated_stub_builtin_function_map.h"],
srcs: ["builtins.cpp"],
- cmd: "sed -n '/Builtin-function-map start/{:a;n;/Builtin-function-map end/q;p;ba}' $(in) | sed -e 's/do_[^}]*/do_stub/g' > $(out)"
+ cmd: "sed -n '/Builtin-function-map start/{:a;n;/Builtin-function-map end/q;p;ba}' $(in) | sed -e 's/do_[^}]*/do_stub/g' > $(out)",
}
cc_binary {
@@ -248,6 +248,9 @@ cc_binary {
},
generated_headers: ["generated_stub_builtin_function_map"],
target: {
+ android: {
+ enabled: false,
+ },
darwin: {
enabled: false,
},