Skip to content

Commit 78e7239

Browse files
ncfaviernbp
authored andcommitted
rust-overlay: drop header function
It was removed in NixOS/nixpkgs#210993
1 parent 85eb0ba commit 78e7239

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust-overlay.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,13 @@ let
159159
local dir="$1"
160160
[ -e "$dir" ] || return 0
161161
162-
header "Patching interpreter of ELF executables and libraries in $dir"
162+
echo "Patching interpreter of ELF executables and libraries in $dir"
163163
local i
164164
while IFS= read -r -d ''$'\0' i; do
165165
if [[ "$i" =~ .build-id ]]; then continue; fi
166166
if ! isELF "$i"; then continue; fi
167167
echo "setting interpreter of $i"
168-
168+
169169
if [[ -x "$i" ]]; then
170170
# Handle executables
171171
patchelf \

0 commit comments

Comments
 (0)