From 35cfb08c588ba0af98ad0845ced6a9eeeeca4054 Mon Sep 17 00:00:00 2001 From: The Android Open Source Project Date: Thu, 22 Jan 2009 00:13:40 -0800 Subject: [PATCH] auto import from //branches/cupcake/...@127436 --- core/Makefile | 7 +++++-- core/main.mk | 18 ++---------------- 2 files changed, 7 insertions(+), 18 deletions(-) diff --git a/core/Makefile b/core/Makefile index a87f606fbf..d8af02cc96 100644 --- a/core/Makefile +++ b/core/Makefile @@ -75,6 +75,9 @@ $(INSTALLED_BUILD_PROP_TARGET): PRIVATE_BUILD_DESC := $(build_desc) ifeq (,$(strip $(BUILD_FINGERPRINT))) BUILD_FINGERPRINT := $(PRODUCT_BRAND)/$(TARGET_PRODUCT)/$(TARGET_DEVICE)/$(TARGET_BOOTLOADER_BOARD_NAME):$(PLATFORM_VERSION)/$(BUILD_ID)/$(BUILD_NUMBER):$(TARGET_BUILD_VARIANT)/$(BUILD_VERSION_TAGS) endif +ifneq ($(words $(BUILD_FINGERPRINT)),1) + $(error BUILD_FINGERPRINT cannot contain spaces: "$(BUILD_FINGERPRINT)") +endif # Selects the first locale in the list given as the argument, # and splits it into language and region, which each may be @@ -810,8 +813,8 @@ define package_files-copy-root endef built_ota_tools := \ - $(hide) $(ACP) $(call intermediates-dir-for,EXECUTABLES,applypatch)/applypatch \ - $(hide) $(ACP) $(call intermediates-dir-for,EXECUTABLES,check_prereq)/check_prereq + $(call intermediates-dir-for,EXECUTABLES,applypatch)/applypatch \ + $(call intermediates-dir-for,EXECUTABLES,check_prereq)/check_prereq $(BUILT_TARGET_FILES_PACKAGE): PRIVATE_OTA_TOOLS := $(built_ota_tools) # Depending on the various images guarantees that the underlying diff --git a/core/main.mk b/core/main.mk index 4f97b33690..216225b680 100644 --- a/core/main.mk +++ b/core/main.mk @@ -361,22 +361,8 @@ include $(board_config_mk) TARGET_DEVICE_DIR := $(patsubst %/,%,$(dir $(board_config_mk))) board_config_mk := -ifdef CUSTOM_PKG -$(info ***************************************************************) -$(info ***************************************************************) -$(info CUSTOM_PKG is obsolete; use CUSTOM_MODULES) -$(info ***************************************************************) -$(info ***************************************************************) -$(error stopping) -endif -ifdef CUSTOM_TARGETS -$(info ***************************************************************) -$(info ***************************************************************) -$(info CUSTOM_TARGETS is obsolete; use CUSTOM_MODULES) -$(info ***************************************************************) -$(info ***************************************************************) -$(error stopping) -endif +# Clean up/verify variables defined by the board config file. +TARGET_BOOTLOADER_BOARD_NAME := $(strip $(TARGET_BOOTLOADER_BOARD_NAME)) # # Include all of the makefiles in the system