From c90d3219726342c034b5404bd60849fc8bff37c8 Mon Sep 17 00:00:00 2001 From: Guillaume Le Vaillant Date: Tue, 14 Jun 2022 14:33:39 +0200 Subject: nonguix: binary-build-system: Fix use of undefined variable. Follow up to a0079cf1bd8ef707ab9e15a0e249cbd34f157ae4. * nonguix/build/binary-build-system.scm (patchelf)[make-rpath]: Use 'name' instead of undefined 'input-or-output'. Signed-off-by: Jonathan Brielmaier --- nonguix/build/binary-build-system.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nonguix/build/binary-build-system.scm b/nonguix/build/binary-build-system.scm index bca1325..913ff44 100644 --- a/nonguix/build/binary-build-system.scm +++ b/nonguix/build/binary-build-system.scm @@ -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 -- cgit v1.2.3