From 745a3b8830a605291b7d4c08d48e3e3732e6b3a7 Mon Sep 17 00:00:00 2001 From: Wildan Mubarok Date: Tue, 15 Jul 2025 01:12:23 +0000 Subject: [PATCH] Fix git dynamic link --- recipes/dev/git/recipe.toml | 2 +- src/bin/cook.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes/dev/git/recipe.toml b/recipes/dev/git/recipe.toml index 5054885e..616f7a81 100644 --- a/recipes/dev/git/recipe.toml +++ b/recipes/dev/git/recipe.toml @@ -14,7 +14,7 @@ dependencies=[ template = "custom" script = """ rsync -av --delete "${COOKBOOK_SOURCE}/" ./ - +DYNAMIC_INIT MAKEFLAGS=( NEEDS_SSL_WITH_CURL=1 NEEDS_CRYPTO_WITH_SSL=1 diff --git a/src/bin/cook.rs b/src/bin/cook.rs index 84bb99e5..8198bfd6 100644 --- a/src/bin/cook.rs +++ b/src/bin/cook.rs @@ -559,6 +559,7 @@ fn auto_deps( stage_dir.join("usr/bin"), stage_dir.join("usr/games"), stage_dir.join("usr/lib"), + stage_dir.join("usr/libexec"), ]); // Recursively (DFS) walk each directory to ensure nested libs and bins are checked.