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 | |
| 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>
| -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." | |||
| 116 | (invoke "patchelf" "--set-rpath" rpath binary))) | 116 | (invoke "patchelf" "--set-rpath" rpath binary))) |
| 117 | #t) | 117 | #t) |
| 118 | 118 | ||
| 119 | (display "Using patchelf version: ") | ||
| 120 | (force-output) | ||
| 121 | (invoke "patchelf" "--version") | ||
| 122 | |||
| 119 | (when (and patchelf-plan | 123 | (when (and patchelf-plan |
| 120 | (not (null? patchelf-plan))) | 124 | (not (null? patchelf-plan))) |
| 121 | (let ((interpreter (car (find-files (assoc-ref inputs "libc") "ld-linux.*\\.so"))) | 125 | (let ((interpreter (car (find-files (assoc-ref inputs "libc") "ld-linux.*\\.so"))) |
