Browse Source

lib/functions.in: fixed split_debug_files() to preserve file ownership when creating a copy we are going strip

stable/0.5
Christian Wiese 11 years ago
committed by Christian Wiese
parent
commit
142b3e752f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/functions.in

+ 1
- 1
lib/functions.in

@ -994,7 +994,7 @@ split_debug_files() {
if [ $( stat --printf="%h" $root/$x ) -gt 1 ]; then
cp -fla $root/$x $root/$x.stripped
else
cp $root/$x $root/$x.stripped
cp -a $root/$x $root/$x.stripped
fi
# create a stripped binary with gnu_debuglink section

Loading…
Cancel
Save