From 1753e58df75972e2f88741bed4be982f9614638d Mon Sep 17 00:00:00 2001 From: Jiyong Park Date: Wed, 4 Dec 2019 13:38:56 +0900 Subject: [PATCH] Remove implicit outputs for the flattened APEX Make module When flattened, the Make module for an APEX is a phony package for the files in it. There is no output (either implcit or explicit) there. Bug: 144338929 Test: m Test: check the generated Android-.mk file Change-Id: I86df3b69f402a7e2d94bafa39f2aad3312d8c28b --- apex/androidmk.go | 1 - 1 file changed, 1 deletion(-) diff --git a/apex/androidmk.go b/apex/androidmk.go index dd5da9783..35622f094 100644 --- a/apex/androidmk.go +++ b/apex/androidmk.go @@ -168,7 +168,6 @@ func (a *apexBundle) androidMkForType() android.AndroidMkData { fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES :=", strings.Join(moduleNames, " ")) } fmt.Fprintln(w, "include $(BUILD_PHONY_PACKAGE)") - fmt.Fprintln(w, "$(LOCAL_INSTALLED_MODULE): .KATI_IMPLICIT_OUTPUTS :=", a.outputFile.String()) } else { fmt.Fprintln(w, "\ninclude $(CLEAR_VARS)")