Remove unused def am: 49bd2148a4 am: 77eeabfc46 am: 3946eb0a08

Original change: https://android-review.googlesource.com/c/platform/system/sepolicy/+/2519756

Change-Id: Ibc53dd7293e4ac6bdd570016e27c4f35553d4d35
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Jooyung Han 2023-04-03 10:22:43 +00:00 committed by Automerger Merge Worker
commit 1cc8e33941

View file

@ -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/<apex_name> 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)