From 27a0040569ee789dfedb06caa515f8c16bb67440 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Fri, 25 Mar 2016 18:09:05 -0700 Subject: [PATCH] Revert "Remove useless LOCAL_ACP_UNAVAILABLE" DO NOT MERGE ANYWHERE This reverts commit f778e12c57b9d13a65930eb656da8e456fc05ad5. LOCAL_ACP_UNAVAILABLE is still necessary in nyc-dev. Change-Id: I25ce63162cb30cb1b5d6173eef0f6b99298162fe --- common/androidmk.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/androidmk.go b/common/androidmk.go index a16a652d8..77a98cb15 100644 --- a/common/androidmk.go +++ b/common/androidmk.go @@ -192,6 +192,9 @@ func translateAndroidMkModule(ctx blueprint.SingletonContext, w io.Writer, mod b fmt.Fprintln(w, "LOCAL_MODULE_HOST_CROSS_ARCH :=", archStr) } else { fmt.Fprintln(w, "LOCAL_MODULE_HOST_ARCH :=", archStr) + + // TODO: this isn't true for every module, only dependencies of ACP + fmt.Fprintln(w, "LOCAL_ACP_UNAVAILABLE := true") } fmt.Fprintln(w, "LOCAL_MODULE_HOST_OS :=", amod.HostType().String()) fmt.Fprintln(w, "LOCAL_IS_HOST_MODULE := true")