Merge "Remove duplicate slashes from find_and_copy results" am: 057667a90f
am: 4ea401ac58
Original change: https://android-review.googlesource.com/c/platform/build/+/2011795 Change-Id: I9feb6ebcf98b006d7356bbacc3f353f215c51975
This commit is contained in:
@@ -479,8 +479,8 @@ def _file_wildcard_exists(file_pattern):
|
||||
|
||||
def _find_and_copy(pattern, from_dir, to_dir):
|
||||
"""Return a copy list for the files matching the pattern."""
|
||||
return sorted(["%s/%s:%s/%s" % (
|
||||
from_dir, f, to_dir, f) for f in rblf_find_files(from_dir, pattern, only_files=1)])
|
||||
return sorted([("%s/%s:%s/%s" % (from_dir, f, to_dir, f))
|
||||
.replace("//", "/") for f in rblf_find_files(from_dir, pattern, only_files=1)])
|
||||
|
||||
def _findstring(needle, haystack):
|
||||
"""Equivalent to GNU make's $(findstring)."""
|
||||
|
Reference in New Issue
Block a user