From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49887) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ekG9O-0004GM-2v for guix-patches@gnu.org; Fri, 09 Feb 2018 16:24:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ekG9K-0000PF-Vi for guix-patches@gnu.org; Fri, 09 Feb 2018 16:24:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:56106) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ekG9K-0000PB-QQ for guix-patches@gnu.org; Fri, 09 Feb 2018 16:24:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ekG9K-0007Nb-KF for guix-patches@gnu.org; Fri, 09 Feb 2018 16:24:02 -0500 Subject: [bug#30406] [PATCH 2/2] gnu: tome4: Replace system* with invoke. Resent-Message-ID: From: Oleg Pykhalov Date: Sat, 10 Feb 2018 00:23:31 +0300 Message-Id: <20180209212331.6538-2-go.wigust@gmail.com> In-Reply-To: <20180209212331.6538-1-go.wigust@gmail.com> References: <20180209212331.6538-1-go.wigust@gmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30406@debbugs.gnu.org * gnu/packages/games.scm (tome4)[arguments]: Replace 'system*' with 'invoke'. --- gnu/packages/games.scm | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index a5804a87b..e327dbc2f 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -5230,8 +5230,7 @@ Crowther & Woods, its original authors, in 1995. It has been known as #:phases (modify-phases %standard-phases (replace 'configure (lambda _ - (zero? (system* "premake4" "gmake")) - #t)) + (invoke "premake4" "gmake"))) (add-after 'set-paths 'set-sdl-paths (lambda* (#:key inputs #:allow-other-keys) (setenv "CPATH" @@ -5257,11 +5256,11 @@ Crowther & Woods, its original authors, in 1995. It has been known as (wrapper (string-append bin "/" ,name))) ;; icon (mkdir-p pixmaps) - (system* unzip "-j" - (string-append - "game/engines/te4-" ,version ".teae") - (string-append - "data/gfx/" icon) "-d" pixmaps) + (invoke unzip "-j" + (string-append "game/engines/te4-" + ,version ".teae") + (string-append "data/gfx/" icon) + "-d" pixmaps) ;; game executable (install-file "t-engine" data) (mkdir-p bin) -- 2.15.1