From 49bd2148a4b30a8773c766a1d8ee606c8c1daeb5 Mon Sep 17 00:00:00 2001 From: Jooyung Han Date: Mon, 3 Apr 2023 15:21:32 +0900 Subject: [PATCH] Remove unused def Bug: n/a Test: m Change-Id: I7d35c6395b4e956e2d6e34e38749a3bf21af81e1 --- Android.mk | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/Android.mk b/Android.mk index 8220fd59f..618f7f0aa 100644 --- a/Android.mk +++ b/Android.mk @@ -260,19 +260,6 @@ else SHAREDLIB_EXT=so endif -# Convert a file_context file for a non-flattened APEX into a file for -# flattened APEX. /system/apex/ path is prepended to the original paths -# $(1): path to the input file_contexts file for non-flattened APEX -# $(2): path to the flattened APEX -# $(3): path to the generated file_contexts file for flattened APEX -# $(4): variable where $(3) is added to -define build_flattened_apex_file_contexts -$(4) += $(3) -$(3): PRIVATE_APEX_PATH := $(subst .,\\.,$(2)) -$(3): $(1) - $(hide) awk '/object_r/{printf("$$(PRIVATE_APEX_PATH)%s\n",$$$$0)}' $$< > $$@ -endef - ################################# include $(CLEAR_VARS)