mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 00:18:07 +01:00
nonguix: binary-build-system: Fix use of undefined variable.
Follow up to a0079cf1bd
.
* nonguix/build/binary-build-system.scm (patchelf)[make-rpath]: Use 'name'
instead of undefined 'input-or-output'.
Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
0d38919a2e
commit
c90d321972
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ The inputs are optional when the file is an executable."
|
|||
(or (maybe-make-rpath outputs name extra-path)
|
||||
(maybe-make-rpath inputs name extra-path)
|
||||
(error (format #f "`~a' not found among the inputs nor the outputs."
|
||||
input-or-output))))
|
||||
name))))
|
||||
|
||||
(unless (string-contains binary ".so")
|
||||
;; Use `system*' and not `invoke' since this may raise an error if
|
||||
|
|
Loading…
Reference in a new issue