mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 16:38:09 +01:00
nonguix: Fix default values for patchelf-plan and install-plan.
* nonguix/build-system/binary.scm (binary-build): Default values are unquoted, so we add an extra quote.
This commit is contained in:
parent
d622a15d08
commit
a35038fb8d
2 changed files with 21 additions and 18 deletions
|
@ -93,8 +93,8 @@
|
|||
(define* (binary-build store name inputs
|
||||
#:key (guile #f)
|
||||
(outputs '("out"))
|
||||
(patchelf-plan '())
|
||||
(install-plan '(("" ".*")))
|
||||
(patchelf-plan ''())
|
||||
(install-plan ''(("." (".") "./")))
|
||||
(search-paths '())
|
||||
(out-of-source? #t)
|
||||
(validate-runpath? #t)
|
||||
|
|
|
@ -97,22 +97,25 @@ The inputs are optional when the file is an executable."
|
|||
":")))
|
||||
(invoke "patchelf" "--set-rpath" rpath binary)))
|
||||
#t)
|
||||
(let ((interpreter (car (find-files (assoc-ref inputs "libc") "ld-linux.*\\.so")))
|
||||
(interpreter32 (car (find-files (assoc-ref inputs "libc32") "ld-linux.*\\.so"))))
|
||||
(for-each
|
||||
(lambda (plan)
|
||||
(match plan
|
||||
((binary runpath)
|
||||
(binary-patch binary (if (64-bit? binary)
|
||||
interpreter
|
||||
interpreter32)
|
||||
runpath))
|
||||
((binary)
|
||||
(binary-patch binary (if (64-bit? binary)
|
||||
interpreter
|
||||
interpreter32)
|
||||
#f))))
|
||||
patchelf-plan))
|
||||
|
||||
(when (and patchelf-plan
|
||||
(not (null? patchelf-plan)))
|
||||
(let ((interpreter (car (find-files (assoc-ref inputs "libc") "ld-linux.*\\.so")))
|
||||
(interpreter32 (car (find-files (assoc-ref inputs "libc32") "ld-linux.*\\.so"))))
|
||||
(for-each
|
||||
(lambda (plan)
|
||||
(match plan
|
||||
((binary runpath)
|
||||
(binary-patch binary (if (64-bit? binary)
|
||||
interpreter
|
||||
interpreter32)
|
||||
runpath))
|
||||
((binary)
|
||||
(binary-patch binary (if (64-bit? binary)
|
||||
interpreter
|
||||
interpreter32)
|
||||
#f))))
|
||||
patchelf-plan)))
|
||||
#t)
|
||||
|
||||
(define %standard-phases
|
||||
|
|
Loading…
Reference in a new issue