We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
header
1 parent 85eb0ba commit 78e7239Copy full SHA for 78e7239
rust-overlay.nix
@@ -159,13 +159,13 @@ let
159
local dir="$1"
160
[ -e "$dir" ] || return 0
161
162
- header "Patching interpreter of ELF executables and libraries in $dir"
+ echo "Patching interpreter of ELF executables and libraries in $dir"
163
local i
164
while IFS= read -r -d ''$'\0' i; do
165
if [[ "$i" =~ .build-id ]]; then continue; fi
166
if ! isELF "$i"; then continue; fi
167
echo "setting interpreter of $i"
168
-
+
169
if [[ -x "$i" ]]; then
170
# Handle executables
171
patchelf \
0 commit comments