Skip to content

Commit

Permalink
Add binary library deps directly, without symlink zoo
Browse files Browse the repository at this point in the history
Fixes FS#39560.
  • Loading branch information
falconindy committed Mar 23, 2014
1 parent d88deaa commit d90c1fb
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions functions
Original file line number Diff line number Diff line change
Expand Up @@ -584,13 +584,7 @@ add_binary() {
fi

if [[ -f $sodep && ! -e $BUILDROOT$sodep ]]; then
if [[ ! -L $sodep ]]; then
add_file "$sodep" "$sodep" "$(stat -c %a "$sodep")"
else
resolved=$(readlink -e "$sodep")
add_symlink "$sodep" "$(readlink "$sodep")"
add_file "$resolved" "$resolved" 755
fi
add_file "$sodep" "$sodep" "$(stat -Lc %a "$sodep")"
fi
done <<< "$lddout"

Expand Down

0 comments on commit d90c1fb

Please sign in to comment.