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

Commit 493306f7 authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Code Review
Browse files

Merge "Fix TARGET_PREBUILT_TAG so that get_build_var can retrieve the correct...

Merge "Fix TARGET_PREBUILT_TAG so that get_build_var can retrieve the correct value across architectures"
parents 4130c80a f1582e54
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -340,4 +340,12 @@ TARGET_AVAILABLE_SDK_VERSIONS := current $(call numerically_sort,\

INTERNAL_PLATFORM_API_FILE := $(TARGET_OUT_COMMON_INTERMEDIATES)/PACKAGING/public_api.xml

# This is the standard way to name a directory containing prebuilt target
# objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so
ifeq ($(TARGET_SIMULATOR),true)
  TARGET_PREBUILT_TAG := $(TARGET_OS)-$(TARGET_ARCH)
else
  TARGET_PREBUILT_TAG := android-$(TARGET_ARCH)
endif

include $(BUILD_SYSTEM)/dumpvar.mk
+0 −8
Original line number Diff line number Diff line
@@ -147,14 +147,6 @@ ifneq ($(TARGET_BUILD_TYPE),debug)
TARGET_BUILD_TYPE := release
endif

# This is the standard way to name a directory containing prebuilt target
# objects. E.g., prebuilt/$(TARGET_PREBUILT_TAG)/libc.so
ifeq ($(TARGET_SIMULATOR),true)
  TARGET_PREBUILT_TAG := $(TARGET_OS)-$(TARGET_ARCH)
else
  TARGET_PREBUILT_TAG := android-$(TARGET_ARCH)
endif

# ---------------------------------------------------------------
# figure out the output directories