Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a9aa002d authored by Cole Faust's avatar Cole Faust Committed by Gerrit Code Review
Browse files

Merge "Implement abspath"

parents 6337ed39 0488f3da
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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):