Merge "Implement abspath" am: a9aa002d3b
am: bc0c150831
Original change: https://android-review.googlesource.com/c/platform/build/+/2065554 Change-Id: Ib32425125c2e6554fbf36f1496047d89e912b5a0 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
a6ea980936
1 changed files with 3 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue