From 21313b87823f330c4dbaa50ccc426a081e1cb641 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Mon, 15 Feb 2021 20:04:31 +0000 Subject: [PATCH] bootstrap: add busybox as an extradepend to deal with /bin/sh virtual --- scripts/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index de6db3e322d..876f595a519 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -120,7 +120,7 @@ for PKG in fortify-headers linux-headers musl libc-dev pkgconf zlib \ ;; build-base) # After build-base, that alone is sufficient dependency in the target - EXTRADEPENDS_TARGET="$PKG" + EXTRADEPENDS_TARGET="busybox $PKG" ;; esac done