Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3128)

Unified Diff: build/config/posix/sysroot_ld_path.py

Issue 2025883002: [MIPS] Fix issue with sysroot_ld_path.py returning empty string (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/config/posix/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/posix/sysroot_ld_path.py
diff --git a/build/config/posix/sysroot_ld_path.py b/build/config/posix/sysroot_ld_path.py
index 4bce7ee3e2bff5ca7e7b5c0f3c15a3e50d2c58b8..a90e54f236dadd46712c770a817a0185fcfd0562 100644
--- a/build/config/posix/sysroot_ld_path.py
+++ b/build/config/posix/sysroot_ld_path.py
@@ -17,4 +17,4 @@ if len(sys.argv) != 3:
result = subprocess.check_output([sys.argv[1], sys.argv[2]]).strip()
-print '"' + result + '"'
+print result.replace(" ", "\n")
« no previous file with comments | « build/config/posix/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698