From a4aca0b88cacad59373435385e4ed78dc451f197 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 26 Jan 2019 14:58:02 +0100 Subject: [PATCH] gnu: cmatrix: Use INVOKE. * gnu/packages/games.scm (cmatrix)[arguments]: Use INVOKE. --- gnu/packages/games.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 1c9be1b394..9c782303e2 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -1363,9 +1363,8 @@ a C library, so they can easily be integrated into other programs.") ;; variables passed as arguments. (let ((out (assoc-ref outputs "out"))) (setenv "CONFIG_SHELL" (which "bash")) - (zero? - (system* "./configure" - (string-append "--prefix=" out))))))))) + (invoke "./configure" + (string-append "--prefix=" out)))))))) (inputs `(("ncurses" ,ncurses))) (home-page "http://www.asty.org/cmatrix") (synopsis "Simulate the display from \"The Matrix\"")