From 3842294972f8feae33cec7c403431748d0df7085 Mon Sep 17 00:00:00 2001 From: travankor Date: Sat, 22 Feb 2020 08:45:23 -0700 Subject: [PATCH] build-style/cargo.sh: append configure_args to cargo install Cargo will only activate the default features for a package. Instead, pass the correct features to cargo install. --- common/build-style/cargo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/build-style/cargo.sh b/common/build-style/cargo.sh index cff16bee082..dd74485032d 100644 --- a/common/build-style/cargo.sh +++ b/common/build-style/cargo.sh @@ -18,6 +18,6 @@ do_install() { : ${make_cmd:=cargo} ${make_cmd} install --path . --target ${RUST_TARGET} --root="${DESTDIR}/usr" \ - --locked ${make_install_args} + --locked ${configure_args} ${make_install_args} rm "${DESTDIR}"/usr/.crates.toml }