Browse Source

lib/functions.in: fixed split_debug_files() to skip processing of static libary archives

stable/0.5
Christian Wiese 13 years ago
parent
commit
b5c9e1e435
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      lib/functions.in

+ 2
- 2
lib/functions.in

@ -977,9 +977,9 @@ split_debug_files() {
$objdumpcmd -s -j .gnu_debuglink $root/$x &>/dev/null && has_gnu_debuglink=true
if $has_gnu_debuglink; then continue; fi
# skip the temporary objcopy command
# files we do not process
case $( basename $root/$x ) in
$objcopycmd) continue ;;
$objcopycmd|*.a) continue ;;
esac
# create destination directory for the debug info file if needed

Loading…
Cancel
Save