Browse Source

musl: fixed to create relative symlink for /usr/bin/ldd

stable/0.6
Christian Wiese 11 years ago
parent
commit
55595a9e7a
  1. 4
      base/musl/musl.conf

4
base/musl/musl.conf

@ -2,7 +2,7 @@
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
#
# Filename: package/.../musl/musl.conf
# Copyright (C) 2012 - 2013 The OpenSDE Project
# Copyright (C) 2012 - 2014 The OpenSDE Project
#
# More information can be found in the files COPYING and README.
#
@ -38,7 +38,7 @@ if [ "$SDECFG_LIBC" == "musl" ]; then
# create a symlink from ld-musl-$musl_arch.so to ldd
# if the dynlinker was started as "ldd" it will print
# DSO information
hook_add postinstall 5 'ln -vsf $root$slibdir/ld-musl-$musl_arch.so.1 $root$bindir/ldd'
hook_add postinstall 5 'ln -vsf $( relative_path $root$slibdir/ld-musl-$musl_arch.so.1 $root$bindir/ldd ) $root$bindir/ldd'
fi
fi

Loading…
Cancel
Save