From 48021ef39ccccd6a3bcbf818dddbf736c3a028d1 Mon Sep 17 00:00:00 2001 From: vasilito Date: Sat, 11 Jul 2026 00:04:31 +0300 Subject: [PATCH] diffutils: add cookbook_make and cookbook_make_install steps The diffutils recipe only ran cookbook_configure but never actually compiled or installed anything, leaving stage.tmp empty (4K). This caused redbear-mini to fail with a 4.0K INCOMPLETE stage and no diff/diff3 binaries in the final image. Add the missing make and make install steps, matching the pattern used by other autotools recipes (bison, findutils, etc.). --- local/recipes/tools/diffutils/recipe.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/local/recipes/tools/diffutils/recipe.toml b/local/recipes/tools/diffutils/recipe.toml index aebbdf3973..a34d9e88e0 100644 --- a/local/recipes/tools/diffutils/recipe.toml +++ b/local/recipes/tools/diffutils/recipe.toml @@ -26,6 +26,8 @@ COOKBOOK_CONFIGURE_FLAGS+=( ac_cv_header_stdio_h=yes ) cookbook_configure +"${COOKBOOK_MAKE}" -j "${COOKBOOK_MAKE_JOBS}" +"${COOKBOOK_MAKE}" install DESTDIR="${COOKBOOK_STAGE}" rm -f "${COOKBOOK_STAGE}/usr/share/info/dir" """