From 4f027bc4566a306ef42626414d3c323e1e8841f4 Mon Sep 17 00:00:00 2001 From: Hilton Chain Date: Tue, 27 Jan 2026 21:18:25 +0800 Subject: [PATCH] rosenthal: alloy-bin: Make exectuable. * modules/rosenthal/packages/binaries.scm (alloy-bin): [arguments]: Make the binary exectuable. --- modules/rosenthal/packages/binaries.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/rosenthal/packages/binaries.scm b/modules/rosenthal/packages/binaries.scm index c8973e6..abc29a1 100644 --- a/modules/rosenthal/packages/binaries.scm +++ b/modules/rosenthal/packages/binaries.scm @@ -467,7 +467,8 @@ rather a set of labels for each log stream.") (dest (in-vicinity #$output "bin")) (ld.so (search-input-file inputs #$(glibc-dynamic-linker)))) (with-directory-excursion dest - (invoke "patchelf" "--set-interpreter" ld.so name)))))))) + (invoke "patchelf" "--set-interpreter" ld.so name) + (chmod name #o555)))))))) (native-inputs (list patchelf unzip)) (synopsis "OpenTelemetry Collector distribution with programmable pipelines")