Merge "Implement abspath" am: a9aa002d3b am: bc0c150831 am: a6ea980936

Original change: https://android-review.googlesource.com/c/platform/build/+/2065554

Change-Id: I9aefb9269330f3e7196e3501ec90acaff029955f
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Cole Faust 2022-04-18 22:35:00 +00:00 committed by Automerger Merge Worker
commit 401af25546

View file

@ -403,7 +403,9 @@ def _soong_config_get(g, nsname, var):
def _abspath(path):
"""Provided for compatibility, to be removed later."""
return path
if type(path) == "list":
path = " ".join(path)
return rblf_shell("realpath "+path)
def _addprefix(prefix, string_or_list):