summaryrefslogtreecommitdiffstats
path: root/core/tasks
diff options
context:
space:
mode:
authorScott Mertz <scott@cyngn.com>2015-10-30 12:48:06 -0700
committerGerrit Code Review <gerrit@cyanogenmod.org>2015-10-30 15:22:13 -0700
commit23624be825c9493265607e3a8216e46319790371 (patch)
treeb397ed3989581f532132043b735107d04cae3a3d /core/tasks
parentac607b87ce714df1446657b33a97f3f85c52b6d7 (diff)
downloadbuild-23624be825c9493265607e3a8216e46319790371.zip
build-23624be825c9493265607e3a8216e46319790371.tar.gz
build-23624be825c9493265607e3a8216e46319790371.tar.bz2
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
Diffstat (limited to 'core/tasks')
-rw-r--r--core/tasks/boot_jars_package_check.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/tasks/boot_jars_package_check.mk b/core/tasks/boot_jars_package_check.mk
index 188c267..28f2b82 100644
--- a/core/tasks/boot_jars_package_check.mk
+++ b/core/tasks/boot_jars_package_check.mk
@@ -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