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

Commit 6be2a5d3 authored by Cole Faust's avatar Cole Faust Committed by Automerger Merge Worker
Browse files

Merge "Implement abspath" am: a9aa002d am: bc0c1508 am: a6ea9809 am:...

Merge "Implement abspath" am: a9aa002d am: bc0c1508 am: a6ea9809 am: 401af255 am: c6d90056

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



Change-Id: I339bab695065765c7a7583c2fb04c5e50e2b2a17
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 746ec22b c6d90056
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):