mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-26 18:35:19 +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
|
(define* (binary-build store name inputs
|
||||||
#:key (guile #f)
|
#:key (guile #f)
|
||||||
(outputs '("out"))
|
(outputs '("out"))
|
||||||
(patchelf-plan '())
|
(patchelf-plan ''())
|
||||||
(install-plan '(("" ".*")))
|
(install-plan ''(("." (".") "./")))
|
||||||
(search-paths '())
|
(search-paths '())
|
||||||
(out-of-source? #t)
|
(out-of-source? #t)
|
||||||
(validate-runpath? #t)
|
(validate-runpath? #t)
|
||||||
|
|
|
@ -97,6 +97,9 @@ The inputs are optional when the file is an executable."
|
||||||
":")))
|
":")))
|
||||||
(invoke "patchelf" "--set-rpath" rpath binary)))
|
(invoke "patchelf" "--set-rpath" rpath binary)))
|
||||||
#t)
|
#t)
|
||||||
|
|
||||||
|
(when (and 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")))
|
||||||
(interpreter32 (car (find-files (assoc-ref inputs "libc32") "ld-linux.*\\.so"))))
|
(interpreter32 (car (find-files (assoc-ref inputs "libc32") "ld-linux.*\\.so"))))
|
||||||
(for-each
|
(for-each
|
||||||
|
@ -112,7 +115,7 @@ The inputs are optional when the file is an executable."
|
||||||
interpreter
|
interpreter
|
||||||
interpreter32)
|
interpreter32)
|
||||||
#f))))
|
#f))))
|
||||||
patchelf-plan))
|
patchelf-plan)))
|
||||||
#t)
|
#t)
|
||||||
|
|
||||||
(define %standard-phases
|
(define %standard-phases
|
||||||
|
|
Loading…
Reference in a new issue