summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAttila Lendvai <attila@lendvai.name>2024-09-28 12:30:48 +0200
committerJohn Kehayias <john.kehayias@protonmail.com>2024-11-10 16:46:13 -0500
commit99574ff94b6fb97794ba720b6fdadf470963dbdc (patch)
tree8d2bcf0b8559b381cc4079e4eeee20c1d19086b1
parentf82534a8a884dd75862a9a989057e80d359841f2 (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.scm4
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")))