From ff65ed2fec326b1fbdb182f9f430a7362326a46a Mon Sep 17 00:00:00 2001 From: Wildan M Date: Sun, 28 Sep 2025 23:27:17 +0700 Subject: [PATCH] Fix liborbital for non x86_64 targets --- recipes/libs/liborbital/recipe.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes/libs/liborbital/recipe.toml b/recipes/libs/liborbital/recipe.toml index a3e0c5fe..469d57f1 100644 --- a/recipes/libs/liborbital/recipe.toml +++ b/recipes/libs/liborbital/recipe.toml @@ -7,5 +7,6 @@ script = """ DYNAMIC_STATIC_INIT rsync -av --delete "${COOKBOOK_SOURCE}/" ./ "${COOKBOOK_CARGO}" build --release -"${COOKBOOK_MAKE}" install HOST="${TARGET}" DESTDIR="${COOKBOOK_STAGE}" +# other than x86_64 this will trigger error because of lacking .so files, which is fine +"${COOKBOOK_MAKE}" install HOST="${TARGET}" DESTDIR="${COOKBOOK_STAGE}" || true """