nonguix: binary-build-system: Print the patchelf version.

* nonguix/build/binary-build-system.scm (patchelf): Output patchelf version.

Signed-off-by: John Kehayias <john.kehayias@protonmail.com>
This commit is contained in:
Attila Lendvai 2024-09-28 12:30:48 +02:00 committed by John Kehayias
parent f82534a8a8
commit 99574ff94b
No known key found for this signature in database
GPG key ID: 499097AE5EA815D9

View file

@ -116,6 +116,10 @@ The inputs are optional when the file is an executable."
(invoke "patchelf" "--set-rpath" rpath binary))) (invoke "patchelf" "--set-rpath" rpath binary)))
#t) #t)
(display "Using patchelf version: ")
(force-output)
(invoke "patchelf" "--version")
(when (and patchelf-plan (when (and patchelf-plan
(not (null? patchelf-plan))) (not (null? patchelf-plan)))
(let ((interpreter (car (find-files (assoc-ref inputs "libc") "ld-linux.*\\.so"))) (let ((interpreter (car (find-files (assoc-ref inputs "libc") "ld-linux.*\\.so")))