Browse Source

sde-build: changed .so symlink correction to use relative_path()

user/chris/test/patchcksum
Alejandro Mery 13 years ago
parent
commit
dc92461a1d
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      lib/functions.in

+ 2
- 1
lib/functions.in

@ -452,7 +452,8 @@ postflist_static_lib() {
;;
*.so)
if [ -L "$ffn" ]; then
ln -svf "../../lib/$( readlink "$ffn" )" "$ffn2"
local dfn=$(relative_path $(readlink -f "$ffn") "$ffn2")
ln -svnf "$dfn" "$ffn2"
rm -f "$ffn"
fi
;;

Loading…
Cancel
Save