From 4306b4018d404130fb1500861204e3cf8af0cdff Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Mar 2026 21:55:06 +0100 Subject: [PATCH] cross-seed: install build-essential to resolve missing `make` error (#12522) * Initial plan * fix(cross-seed): add build-essential to resolve missing make error Co-authored-by: MickLesk <47820557+MickLesk@users.noreply.github.com> * fix(cross-seed): use apt and ensure_dependencies per review feedback Co-authored-by: MickLesk <47820557+MickLesk@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: MickLesk <47820557+MickLesk@users.noreply.github.com> --- ct/cross-seed.sh | 1 + install/cross-seed-install.sh | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/ct/cross-seed.sh b/ct/cross-seed.sh index 73371e019..416b9c2e7 100644 --- a/ct/cross-seed.sh +++ b/ct/cross-seed.sh @@ -25,6 +25,7 @@ function update_script() { check_container_resources NODE_VERSION="24" setup_nodejs + ensure_dependencies build-essential if command -v cross-seed &>/dev/null; then current_version=$(cross-seed --version) diff --git a/install/cross-seed-install.sh b/install/cross-seed-install.sh index 381a255d8..25a3f7ab8 100644 --- a/install/cross-seed-install.sh +++ b/install/cross-seed-install.sh @@ -13,6 +13,10 @@ setting_up_container network_check update_os +msg_info "Installing Dependencies" +$STD apt install -y build-essential +msg_ok "Installed Dependencies" + NODE_VERSION="24" setup_nodejs msg_info "Setup Cross-Seed"