Merge "Implement abspath"

This commit is contained in:
Cole Faust
2022-04-18 21:26:40 +00:00
committed by Gerrit Code Review

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):