From 3e5044ee8e0572acdd4147f84f788c22d2b06211 Mon Sep 17 00:00:00 2001 From: "fox.cpp" Date: Sat, 25 Jan 2025 01:07:46 +0300 Subject: [PATCH] build.sh: Remove -C from install Not available in Busybox when building under Alpine Linux --- build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sh b/build.sh index f0a1592..419dc1f 100755 --- a/build.sh +++ b/build.sh @@ -163,14 +163,14 @@ install() { if command -v go >/dev/null 2>/dev/null; then set -e if [ "$(go env GOOS)" = "linux" ]; then - command install -C -m 0755 -d "${destdir}/${prefix}/lib/systemd/system/" - command install -C -m 0644 "${builddir}"/systemd/*.service "${destdir}/${prefix}/lib/systemd/system/" + command install -m 0755 -d "${destdir}/${prefix}/lib/systemd/system/" + command install -m 0644 "${builddir}"/systemd/*.service "${destdir}/${prefix}/lib/systemd/system/" fi else set -e if [ "$(uname -s)" = "Linux" ]; then - command install -C -m 0755 -d "${destdir}/${prefix}/lib/systemd/system/" - command install -C -m 0644 "${builddir}"/systemd/*.service "${destdir}/${prefix}/lib/systemd/system/" + command install -m 0755 -d "${destdir}/${prefix}/lib/systemd/system/" + command install -m 0644 "${builddir}"/systemd/*.service "${destdir}/${prefix}/lib/systemd/system/" fi fi