From ccef40057f0e3bd36d6f6515e2fc0018c3221604 Mon Sep 17 00:00:00 2001 From: Christian Wiese Date: Tue, 10 Sep 2013 11:38:10 +0200 Subject: [PATCH] musl: improve ldd symlink creation to use $slibdir instead hardcoding /lib --- base/musl/musl.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/musl/musl.conf b/base/musl/musl.conf index 4c570ec83..5b78ed50f 100644 --- a/base/musl/musl.conf +++ b/base/musl/musl.conf @@ -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/lib/ld-musl-$musl_arch.so.1 $root$bindir/ldd' + hook_add postinstall 5 'ln -vsf $root$slibdir/ld-musl-$musl_arch.so.1 $root$bindir/ldd' fi fi