Skip to content
Snippets Groups Projects
Unverified Commit 29a3ffb4 authored by Andy Patterson's avatar Andy Patterson Committed by Ludovic Courtès
Browse files

build-system/asdf: Log lisp system invocations.


* guix/build/lisp-system.scm: (lisp-eval-program): Log the arguments to
system*.

Signed-off-by: default avatarLudovic Courtès <ludo@gnu.org>
parent 7b6b7cdc
No related branches found
No related tags found
No related merge requests found
...@@ -119,9 +119,10 @@ (define (wrap-output-translations translations) ...@@ -119,9 +119,10 @@ (define (wrap-output-translations translations)
(define (lisp-eval-program program) (define (lisp-eval-program program)
"Evaluate PROGRAM with a given LISP implementation." "Evaluate PROGRAM with a given LISP implementation."
(unless (zero? (apply system* (define invocation (lisp-invocation program))
(lisp-invocation program))) (format #t "Invoking ~a: ~{~s ~}~%" (%lisp-type) invocation)
(error "lisp-eval-program failed!" (%lisp) program))) (unless (zero? (apply system* invocation))
(error "lisp-eval-program failed!" invocation)))
(define (spread-statements program argument-name) (define (spread-statements program argument-name)
"Return a list with the statements from PROGRAM spread between "Return a list with the statements from PROGRAM spread between
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment