forked from openkylin/platform_build
Print the platform version and version codename in the big build header.
This commit is contained in:
parent
cb08f15bf4
commit
eefd0212f1
|
@ -7,6 +7,9 @@
|
|||
# OUT_DIR is also set to "out" if it's not already set.
|
||||
# this allows you to set it to somewhere else if you like
|
||||
|
||||
# Set up version information.
|
||||
include $(BUILD_SYSTEM)/version_defaults.mk
|
||||
|
||||
# ---------------------------------------------------------------
|
||||
# If you update the build system such that the environment setup
|
||||
# or buildspec.mk need to be updated, increment this number, and
|
||||
|
@ -319,6 +322,8 @@ endif # CALLED_FROM_SETUP
|
|||
|
||||
ifneq ($(PRINT_BUILD_CONFIG),)
|
||||
$(info ============================================)
|
||||
$(info PLATFORM_VERSION_CODENAME=$(PLATFORM_VERSION_CODENAME))
|
||||
$(info PLATFORM_VERSION=$(PLATFORM_VERSION))
|
||||
$(info TARGET_PRODUCT=$(TARGET_PRODUCT))
|
||||
$(info TARGET_BUILD_VARIANT=$(TARGET_BUILD_VARIANT))
|
||||
$(info TARGET_SIMULATOR=$(TARGET_SIMULATOR))
|
||||
|
|
|
@ -85,9 +85,6 @@ $(warning ************************************************************)
|
|||
$(error Directory names containing spaces not supported)
|
||||
endif
|
||||
|
||||
# Set up version information.
|
||||
include $(BUILD_SYSTEM)/version_defaults.mk
|
||||
|
||||
# These are the modifier targets that don't do anything themselves, but
|
||||
# change the behavior of the build.
|
||||
# (must be defined before including definitions.make)
|
||||
|
|
Loading…
Reference in New Issue