Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0793d73 authored by Chris Gross's avatar Chris Gross Committed by Automerger Merge Worker
Browse files

Merge "Allow bootjars in system_ext." am: ad032946

Change-Id: I0147d623ba947a1f68f2822f1add922aa481de16
parents 389b4413 ad032946
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ stamp := $(intermediates)/stamp
# Convert the colon-separated components <apex>:<jar> to <jar>.<apex> names
# (e.g. com.android.media:updatable-media -> updatable-media.com.android.media).
# Special cases:
#   - for the "platform" apex drop the .<apex> suffix
#   - for the "platform" or "system_ext" apex drop the .<apex> suffix
#   - for the ART apex select release variant
boot_jars := $(foreach pair,$(PRODUCT_BOOT_JARS) $(PRODUCT_UPDATABLE_BOOT_JARS), \
  $(eval apex := $(call word-colon,1,$(pair))) \
@@ -34,6 +34,7 @@ boot_jars := $(foreach pair,$(PRODUCT_BOOT_JARS) $(PRODUCT_UPDATABLE_BOOT_JARS),
  $(eval q := :) \
  $(eval sfx := $(q).$(apex)$(q)) \
  $(eval sfx := $(subst $(q).platform$(q),$(q)$(q),$(sfx))) \
  $(eval sfx := $(subst $(q).system_ext$(q),$(q)$(q),$(sfx))) \
  $(eval sfx := $(subst $(q).com.android.art$(q),$(q).com.android.art.release$(q),$(sfx))) \
  $(eval sfx := $(patsubst $(q)%$(q),%,$(sfx))) \
  $(jar)$(sfx))