From 0bdad8670ba8adb302f187e05f5343bd4236da27 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 12 Jan 2026 15:02:35 -0700 Subject: [PATCH] os-test-bins: add gettext, libarchive, and libiconv to build depends and run make html --- recipes/tests/os-test-bins/recipe.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/recipes/tests/os-test-bins/recipe.toml b/recipes/tests/os-test-bins/recipe.toml index e2816674c..10ab2b04a 100644 --- a/recipes/tests/os-test-bins/recipe.toml +++ b/recipes/tests/os-test-bins/recipe.toml @@ -2,6 +2,11 @@ same_as = "../os-test" [build] +dependencies = [ + "gettext", + "libarchive", + "libiconv", +] template = "custom" script = """ DYNAMIC_INIT @@ -46,6 +51,7 @@ echo "Ensuring outputs are newer than sources and executables" find out -type f -exec touch '{}' ';' make test +make html EOF chmod +x "${COOKBOOK_STAGE}/usr/bin/os-test-runner" """