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

Unified Diff: build/linux/dump_app_syms.py

Issue 2563663003: Remove -r option from dump_syms invocation on Linux (Closed)
Patch Set: Created 4 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/dump_app_syms.py
diff --git a/build/linux/dump_app_syms.py b/build/linux/dump_app_syms.py
index c18bff77694ae22314a74b2de3f2219b0ccdfee2..65f76450c17622bebe45c97a9b9162664ce992d0 100644
--- a/build/linux/dump_app_syms.py
+++ b/build/linux/dump_app_syms.py
@@ -23,7 +23,7 @@ outfile = sys.argv[4]
if not os.path.isfile(outfile) or \
os.stat(outfile).st_mtime > os.stat(infile).st_mtime:
with open(outfile, 'w') as outfileobj:
- subprocess.check_call([dumpsyms, '-r', infile], stdout=outfileobj)
+ subprocess.check_call([dumpsyms, infile], stdout=outfileobj)
if strip_binary != '0':
subprocess.check_call(['strip', infile])
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698