guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/04: gnu: ldc: Use INVOKE.


From: guix-commits
Subject: 04/04: gnu: ldc: Use INVOKE.
Date: Tue, 26 Mar 2019 18:14:21 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 68631e037bd79039b5b14150e01f64cd8f81eabb
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Mar 26 21:35:46 2019 +0100

    gnu: ldc: Use INVOKE.
    
    * gnu/packages/dlang.scm (ldc)[arguments]: Use INVOKE.
---
 gnu/packages/dlang.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/dlang.scm b/gnu/packages/dlang.scm
index ddd747a..c164ed8 100644
--- a/gnu/packages/dlang.scm
+++ b/gnu/packages/dlang.scm
@@ -211,12 +211,12 @@ bootstrapping more recent compilers written in D.")
              (lambda* (#:key inputs #:allow-other-keys)
                (let ((unpack (lambda (source target)
                                (with-directory-excursion target
-                                 (zero? (system* "tar" "xvf"
-                                                 (assoc-ref inputs source)
-                                                 "--strip-components=1"))))))
-                 (and (unpack "phobos-src" "runtime/phobos")
-                      (unpack "druntime-src" "runtime/druntime")
-                      (unpack "dmd-testsuite-src" "tests/d2/dmd-testsuite")))))
+                                 (invoke "tar" "xvf"
+                                         (assoc-ref inputs source)
+                                         "--strip-components=1")))))
+                 (unpack "phobos-src" "runtime/phobos")
+                 (unpack "druntime-src" "runtime/druntime")
+                 (unpack "dmd-testsuite-src" "tests/d2/dmd-testsuite"))))
            (add-after 'unpack-submodule-sources 'patch-phobos
              (lambda* (#:key inputs #:allow-other-keys)
                (substitute* '("runtime/phobos/std/process.d"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]