Change the content of lsdump_paths.txt to newline-separated paths

This commit changes the delimiters from space characters to newline
characters so that lsdump_paths.txt can be easily read and parsed by
human.

Bug: 111814844
Test: m vndk findlsdumps -j18
Change-Id: I5c50934a0f035244cff71351d9f4be4203222590
This commit is contained in:
Yi-yo Chiang
2018-07-25 13:34:28 +08:00
committed by Logan Chien
parent f2bea1b296
commit ac0d49fe1e

View File

@@ -3641,4 +3641,4 @@ endif
# Find lsdump paths
FIND_LSDUMPS_FILE := $(PRODUCT_OUT)/lsdump_paths.txt
$(FIND_LSDUMPS_FILE) : $(LSDUMP_PATHS)
$(hide) rm -rf $@ && echo "$^" > $@
$(hide) rm -rf $@ && echo "$^" | sed -e 's/ /\n/g' > $@