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

Commit 23624be8 authored by Scott Mertz's avatar Scott Mertz Committed by Gerrit Code Review
Browse files

build: skip checking boot jars by default

Currently, builds are failing this because of
non-whitelisted classes in the boot jar.  Lets
disable this check until we can refactor the code.

Change-Id: I1d4b231d43702441a2d5ee9e3c058b9b2a88a38c
parent ac607b87
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@
# Rules to check if classes in the boot jars are from the whitelisted packages.
#

ifneq ($(SKIP_BOOT_JARS_CHECK),)
ifneq ($(SKIP_BOOT_JARS_CHECK),true)
ifneq ($(TARGET_BUILD_PDK),true)
ifdef PRODUCT_BOOT_JARS
@@ -44,3 +45,4 @@ droidcore : check-boot-jars
endif  # PRODUCT_BOOT_JARS
endif  # TARGET_BUILD_PDK not true
endif  # SKIP_BOOT_JARS_CHECK not true
endif  # SKIP_BOOT_JARS_CHECK not defined