From 6f018211390c398c306103aad71f7347b46aee82 Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Thu, 4 Jan 2024 13:06:44 +0000 Subject: [PATCH] tools/recipes/trace-cmd.recipe: Avoid building shared object FIX Avoid using install_libs which attempts to build a shared object, when we only want a static binary. --- tools/recipes/trace-cmd.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/recipes/trace-cmd.recipe b/tools/recipes/trace-cmd.recipe index 22f23a776..3b6e91f82 100644 --- a/tools/recipes/trace-cmd.recipe +++ b/tools/recipes/trace-cmd.recipe @@ -36,7 +36,7 @@ build_tracecmd() { # All variables need to be exported, NOT SET ON THE CLI of make-trace-cmd.sh # itself. Otherwise they will internally conflict with existing ones. export LDFLAGS="-static" NO_AUDIT=yes NO_PYTHON=yes CFLAGS="-O3" - ./make-trace-cmd.sh install install_libs + ./make-trace-cmd.sh install strip "$TRACE_CMD_BIN" } -- GitLab