diff --git a/recipes/core/drivers-initfs/recipe.toml b/recipes/core/drivers-initfs/recipe.toml
index 3d10a417518dc419c6df2a41d52e1113b3f665f4..e1e91f5bbcac09074e0256329ac45a7ceb391983 100644
--- a/recipes/core/drivers-initfs/recipe.toml
+++ b/recipes/core/drivers-initfs/recipe.toml
@@ -49,11 +49,11 @@ esac
 mkdir -pv "${COOKBOOK_STAGE}/bin"
 export CARGO_PROFILE_RELEASE_OPT_LEVEL=s
 export CARGO_PROFILE_RELEASE_PANIC=abort
+"${COOKBOOK_CARGO}" build --release \
+    --manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
+    $(for bin in "${BINS[@]}"; do echo "-p" "${bin}"; done)
 for bin in "${BINS[@]}"
 do
-    "${COOKBOOK_CARGO}" build --release \
-        --manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
-        -p "${bin}"
     cp -v "target/${TARGET}/release/${bin}" "${COOKBOOK_STAGE}/bin"
 done
 
diff --git a/recipes/core/drivers/recipe.toml b/recipes/core/drivers/recipe.toml
index 024306fe498575edb9aa563dd2bdf17c5880ad40..cccd2729032ac1d48ebc1dd54c0b425194afc5b8 100644
--- a/recipes/core/drivers/recipe.toml
+++ b/recipes/core/drivers/recipe.toml
@@ -34,11 +34,11 @@ esac
 mkdir -pv "${COOKBOOK_STAGE}/bin"
 export CARGO_PROFILE_RELEASE_OPT_LEVEL=s
 export CARGO_PROFILE_RELEASE_PANIC=abort
+"${COOKBOOK_CARGO}" build --release \
+    --manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
+    $(for bin in "${BINS[@]}"; do echo "-p" "${bin}"; done)
 for bin in "${BINS[@]}"
 do
-    "${COOKBOOK_CARGO}" build --release \
-        --manifest-path "${COOKBOOK_SOURCE}/Cargo.toml" \
-        -p "${bin}"
     cp -v "target/${TARGET}/release/${bin}" "${COOKBOOK_STAGE}/bin"
 done