summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Martins <bgcngm@gmail.com>2023-10-09 14:45:54 +0100
committerNolen Johnson <johnsonnolen@gmail.com>2023-10-11 18:03:31 +0000
commit695fe68f618dda28a4a3890a544972c08d415bde (patch)
tree9e4b16546113b3f9b22c75b4394856732fff059f
parentacdcfb83caf76a20b10129c1478c4349237553c2 (diff)
downloadatv-695fe68f618dda28a4a3890a544972c08d415bde.tar.gz
atv_base: Include default translations
Many ATV targets are inheriting from this makefile to set AOSP product definitions. Additionally, in our project where extra locales are included via CUSTOM_LOCALES, signing started to fail for all the ATV targets. That failure basically unveilled that ATV was never building with translations from AOSP. Fix it by adding default language packs here as well. Note that this problem wouldn't surface on a device inheriting from aosp_tv_*.mk, as such makefiles include atv_generic_system.mk which in turn includes languages_default.mk. But per the only reference ATV repo (yukawa), that isn't the proper makefile to inherit. Change-Id: I5548b8d12e0b8cd4bcbf1ac067055a8f248c6c0b
-rw-r--r--products/atv_base.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/products/atv_base.mk b/products/atv_base.mk
index fc9d227..b3eb808 100644
--- a/products/atv_base.mk
+++ b/products/atv_base.mk
@@ -14,6 +14,7 @@
# limitations under the License.
#
+$(call inherit-product, $(SRC_TARGET_DIR)/product/languages_default.mk)
$(call inherit-product, device/google/atv/products/atv_system.mk)
$(call inherit-product, device/google/atv/products/atv_system_ext.mk)
$(call inherit-product, device/google/atv/products/atv_product.mk)