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:
Guillaume Le Vaillant 2022-06-14 14:33:39 +02:00 committed by Jonathan Brielmaier
parent 0d38919a2e
commit c90d321972
No known key found for this signature in database
GPG key ID: ECFC83988B4E4B9F

View file

@ -109,7 +109,7 @@ The inputs are optional when the file is an executable."
(or (maybe-make-rpath outputs name extra-path) (or (maybe-make-rpath outputs name extra-path)
(maybe-make-rpath inputs name extra-path) (maybe-make-rpath inputs name extra-path)
(error (format #f "`~a' not found among the inputs nor the outputs." (error (format #f "`~a' not found among the inputs nor the outputs."
input-or-output)))) name))))
(unless (string-contains binary ".so") (unless (string-contains binary ".so")
;; Use `system*' and not `invoke' since this may raise an error if ;; Use `system*' and not `invoke' since this may raise an error if