| 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])
|
|
|