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)