Skip to content
Snippets Groups Projects
Commit 52602baa authored by Stricted's avatar Stricted Committed by Luca Stefani
Browse files

lineage: soong: replace space with colon on TARGET_LD_SHIM_LIBS

that way we can split the shim list logically into multiple lines like

TARGET_LD_SHIM_LIBS := /system/bin/gpsd|/vendor/lib/libshim_gpsd.so \
    /system/lib/libexynoscamera.so|/vendor/lib/libexynoscamera_shim.so \
    /system/lib/libstagefright.so|/system/lib/libstagefright_shim.so

to not have one single huge line

Change-Id: Ice1411ee22b78da1dbf22eac412b9e4978acebdf
parent 69262850
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,6 @@ lineage_soong:
echo ' "Specific_camera_parameter_library": "$(TARGET_SPECIFIC_CAMERA_PARAMETER_LIBRARY)",'; \
echo ' "Needs_text_relocations": $(if $(filter true,$(TARGET_NEEDS_PLATFORM_TEXT_RELOCATIONS)),true,false),'; \
echo ' "Uses_qcom_bsp_legacy": $(if $(filter true,$(TARGET_USES_QCOM_BSP_LEGACY)),true,false),'; \
echo ' "Target_shim_libs": "$(TARGET_LD_SHIM_LIBS)"'; \
echo ' "Target_shim_libs": "$(subst $(space),:,$(TARGET_LD_SHIM_LIBS))"'; \
echo '},'; \
echo '') > $(SOONG_VARIABLES_TMP)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment