From 2f2f995d9d52484720dbe8b4b1649c132ec1feee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20P=2E=20Stani=C4=87?= Date: Wed, 7 Aug 2019 13:24:16 +0200 Subject: main/musl: fix /usr/bin/ldd to accept cli params remove ' --' from exec line to allow passing parameters prefixed with -- bump pkgrel --- main/musl/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/musl') diff --git a/main/musl/APKBUILD b/main/musl/APKBUILD index e9a2ce9028..af6b388687 100644 --- a/main/musl/APKBUILD +++ b/main/musl/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Timo Teräs pkgname=musl pkgver=1.1.23 -pkgrel=2 +pkgrel=3 pkgdesc="the musl c library (libc) implementation" url="http://www.musl-libc.org/" arch="all" @@ -98,7 +98,7 @@ package() { cat >>"$pkgdir"/usr/bin/ldd <<-EOF #!/bin/sh - exec /lib/$LDSO --list -- "\$@" + exec /lib/$LDSO --list "\$@" EOF chmod 755 "$pkgdir"/usr/bin/ldd fi -- cgit v1.2.3