From b49ab9152b9fc1073e846cc6220ad6cf855ea657 Mon Sep 17 00:00:00 2001 From: Alessandro Astone Date: Fri, 6 Sep 2019 01:13:17 +0200 Subject: [PATCH] lineage: soong: _contents -> _json_contents Change-Id: I2baa36bbb9aff3a7e70a293ed3352fb718eb611c --- build/soong/soong_config.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/soong/soong_config.mk b/build/soong/soong_config.mk index 316b0721..ddcfdfdf 100644 --- a/build/soong/soong_config.mk +++ b/build/soong/soong_config.mk @@ -1,7 +1,7 @@ add_json_str_omitempty = $(if $(strip $(2)),$(call add_json_str, $(1), $(2))) add_json_val_default = $(call add_json_val, $(1), $(if $(strip $(2)), $(2), $(3))) -_contents := $(_contents) "Lineage":{$(newline) +_json_contents := $(_json_contents) "Lineage":{$(newline) # See build/core/soong_config.mk for the add_json_* functions you can use here. $(call add_json_str_omitempty, Additional_gralloc_10_usage_bits, $(TARGET_ADDITIONAL_GRALLOC_10_USAGE_BITS)) @@ -27,6 +27,6 @@ $(call add_json_bool, Uses_qcom_um_4_9_family, $(filter true,$(TARGET_USES_QCOM_ $(call add_json_bool, Uses_qcom_um_4_14_family, $(filter true,$(TARGET_USES_QCOM_UM_4_14_FAMILY))) # This causes the build system to strip out the last comma in our nested struct, to keep the JSON valid. -_contents := $(_contents)__SV_END +_json_contents := $(_json_contents)__SV_END -_contents := $(_contents) },$(newline) +_json_contents := $(_json_contents) },$(newline)