Skip to content

Commit

Permalink
Resurrect GDB index generation (RhBug:1410907)
Browse files Browse the repository at this point in the history
Commit 54d30ac broke GDB index
generation due to a leftover "[". In git master this got fixed in
commit 67d3df3 but we don't want
that on 4.13.x because there are behavior changes involved, so
fixing this specifically on the 4.13.x branch.
  • Loading branch information
pmatilai committed Feb 16, 2017
1 parent 31d94cf commit e23c982
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/find-debuginfo.sh
Expand Up @@ -312,7 +312,7 @@ while read nlinks inum f; do
$strict && exit 2
fi

[ type gdb-add-index >/dev/null 2>&1 && gdb-add-index "$f" > /dev/null 2>&1
type gdb-add-index >/dev/null 2>&1 && gdb-add-index "$f" > /dev/null 2>&1

# A binary already copied into /usr/lib/debug doesn't get stripped,
# just has its file names collected and adjusted.
Expand Down

0 comments on commit e23c982

Please sign in to comment.