diff options
author | Attila Lendvai <attila@lendvai.name> | 2024-09-28 12:30:48 +0200 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2024-11-10 16:46:13 -0500 |
commit | 99574ff94b6fb97794ba720b6fdadf470963dbdc (patch) | |
tree | 8d2bcf0b8559b381cc4079e4eeee20c1d19086b1 /nonguix | |
parent | f82534a8a884dd75862a9a989057e80d359841f2 (diff) |
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>
Diffstat (limited to 'nonguix')
-rw-r--r-- | nonguix/build/binary-build-system.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nonguix/build/binary-build-system.scm b/nonguix/build/binary-build-system.scm index f5fcaaf..ccfc3eb 100644 --- a/nonguix/build/binary-build-system.scm +++ b/nonguix/build/binary-build-system.scm @@ -116,6 +116,10 @@ The inputs are optional when the file is an executable." (invoke "patchelf" "--set-rpath" rpath binary))) #t) + (display "Using patchelf version: ") + (force-output) + (invoke "patchelf" "--version") + (when (and patchelf-plan (not (null? patchelf-plan))) (let ((interpreter (car (find-files (assoc-ref inputs "libc") "ld-linux.*\\.so"))) |