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

Unified Diff: build/linux/sysroot_ld_path.sh

Issue 2900193003: Use relative path in -L and -Wl,-rpath-link (Closed)
Patch Set: don't print on empty Created 3 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/sysroot_ld_path.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/sysroot_ld_path.sh
diff --git a/build/linux/sysroot_ld_path.sh b/build/linux/sysroot_ld_path.sh
index 4b8bf7305e2f285000811a35e36fe3231452ad3b..623d47b861541aa8e705b8a2ab9991bba20c7298 100755
--- a/build/linux/sysroot_ld_path.sh
+++ b/build/linux/sysroot_ld_path.sh
@@ -26,8 +26,7 @@ process_entry() {
log_error_and_exit $localpath does not start with /
fi
local entry="$root$localpath"
- echo -L$entry
- echo -Wl,-rpath-link=$entry
+ echo $entry
}
process_ld_so_conf() {
« no previous file with comments | « build/config/posix/sysroot_ld_path.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698