Merge "create_reference_dumps.py: Change lsdump_paths.txt to newline-separated paths"
This commit is contained in:
@@ -43,8 +43,8 @@ def get_lsdump_paths_from_out(product):
|
|||||||
assert(os.path.exists(lsdump_paths_file) == True)
|
assert(os.path.exists(lsdump_paths_file) == True)
|
||||||
lsdump_paths = dict()
|
lsdump_paths = dict()
|
||||||
with open(lsdump_paths_file) as f:
|
with open(lsdump_paths_file) as f:
|
||||||
for path in f.read().split(' '):
|
for path in f:
|
||||||
add_to_path_dict(path, lsdump_paths)
|
add_to_path_dict(path.rstrip(), lsdump_paths)
|
||||||
return lsdump_paths
|
return lsdump_paths
|
||||||
|
|
||||||
def find_and_copy_lib_lsdumps(target, ref_dump_dir_stem, ref_dump_dir_insertion,
|
def find_and_copy_lib_lsdumps(target, ref_dump_dir_stem, ref_dump_dir_insertion,
|
||||||
|
|||||||
Reference in New Issue
Block a user