Skip to content

Commit

Permalink
Linux: Change dump_app_syms script to pass -r to dump_syms. This opti…
Browse files Browse the repository at this point in the history
…on was added in Breakpad r1163.

BUG=230995
NOTRY=true

Review URL: https://chromiumcodereview.appspot.com/14188058

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198800 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
thestig@chromium.org committed May 7, 2013
1 parent 49b70b2 commit e28129d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/linux/dump_app_syms
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ OUTFILE="$4"

# Dump the symbols from the given binary.
if [ ! -e "$OUTFILE" -o "$INFILE" -nt "$OUTFILE" ]; then
"$DUMPSYMS" "$INFILE" > "$OUTFILE"
"$DUMPSYMS" -r "$INFILE" > "$OUTFILE"
fi

if [ "$STRIP_BINARY" != "0" ]; then
Expand Down

0 comments on commit e28129d

Please sign in to comment.