Skip to content
Snippets Groups Projects
Commit 143b728e authored by Carlo Landmeter's avatar Carlo Landmeter
Browse files

main/alpine-base: fix build on eglibc

parent 23139fcf
No related merge requests found
...@@ -9,7 +9,11 @@ arch="noarch" ...@@ -9,7 +9,11 @@ arch="noarch"
license="GPL" license="GPL"
depends="alpine-baselayout alpine-conf apk-tools busybox busybox-initscripts depends="alpine-baselayout alpine-conf apk-tools busybox busybox-initscripts
openrc" openrc"
[ "$ALPINE_LIBC" != "eglibc" ] && depends="$depends uclibc-utils" if [ "$ALPINE_LIBC" = "eglibc" ]; then
depends="$depends eglibc-utils"
else
depends="$depends uclibc-utils"
fi
makedepends= makedepends=
install= install=
subpackages= subpackages=
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment