Build dash statically

This commit is contained in:
Jeremy Soller 2019-05-11 10:10:25 -06:00
parent 5f795c0df9
commit b5ff69a073
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

@ -13,7 +13,12 @@ function recipe_update {
function recipe_build {
./autogen.sh
./configure --build=${BUILD} --host=${HOST} --prefix=/ cross_compiling=yes
./configure \
--build=${BUILD} \
--host=${HOST} \
--prefix=/ \
--enable-static \
cross_compiling=yes
make -j"$(nproc)"
skip=1
}