diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2019-06-05 19:16:35 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-06-05 19:18:48 +0000 |
commit | 75ea66af0b47701602c6884311b40d603b8ca5c2 (patch) | |
tree | d079864db672c36edb491476bff4e107b6cfe12e | |
parent | ba8278cd1fba706e16c1da1192392c2d7f787c70 (diff) | |
download | aports-75ea66af0b47701602c6884311b40d603b8ca5c2.tar.bz2 aports-75ea66af0b47701602c6884311b40d603b8ca5c2.tar.xz |
main/musl: fix ldd
fix regression introduced by commit d4a7955c (main/musl: fix ldd when
used with libraries).
-rw-r--r-- | main/musl/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/musl/APKBUILD b/main/musl/APKBUILD index 46aeb01835..aa6bdbba20 100644 --- a/main/musl/APKBUILD +++ b/main/musl/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Timo Teräs <timo.teras@iki.fi> pkgname=musl pkgver=1.1.22 -pkgrel=1 +pkgrel=2 pkgdesc="the musl c library (libc) implementation" url="http://www.musl-libc.org/" arch="all" @@ -90,7 +90,7 @@ package() { cat >>"$pkgdir"/usr/bin/ldd <<-EOF #!/bin/sh - exec /lib/ld-musl-$ARCH.so.1 --list -- "\$@" + exec /lib/$LDSO --list -- "\$@" EOF chmod 755 "$pkgdir"/usr/bin/ldd fi |