Add check for making sure theme exists for device

Change-Id: I9b178cebbb2834cd0c86088c8e78678f55d14e62
This commit is contained in:
bigbiff bigbiff
2013-11-16 13:25:27 -05:00
parent 705f16ea4b
commit 163d474803
+9 -1
View File
@@ -68,7 +68,7 @@ ifeq ($(HAVE_SELINUX), true)
LOCAL_CFLAGS += -DHAVE_SELINUX
endif
ifndef DEVICE_RESOLUTION
ifeq ($(DEVICE_RESOLUTION),)
$(warning ********************************************************************************)
$(warning * DEVICE_RESOLUTION is NOT SET in BoardConfig.mk )
$(warning * Please see http://tinyw.in/nP7d for details )
@@ -76,6 +76,14 @@ $(warning **********************************************************************
$(error stopping)
endif
ifeq "$(wildcard bootable/recovery/gui/devices/$(DEVICE_RESOLUTION))" ""
$(warning ********************************************************************************)
$(warning * DEVICE_RESOLUTION ($(DEVICE_RESOLUTION)) does NOT EXIST in bootable/recovery/gui/devices )
$(warning * Please choose an existing theme or create a new one for your device )
$(warning ********************************************************************************)
$(error stopping)
endif
LOCAL_C_INCLUDES += bionic external/stlport/stlport $(commands_recovery_local_path)/gui/devices/$(DEVICE_RESOLUTION)
include $(BUILD_STATIC_LIBRARY)