diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2018-02-21 02:52:01 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2018-02-21 02:52:01 +0100 |
commit | a4960a204dc18d9ef9d94de448a2180a675e235d (patch) | |
tree | 34b7c4de64d0f604e0019f423e30de6fc0563f00 | |
parent | 12479d58be573c45cfdbdcd27e0bb1adb5babfb2 (diff) | |
download | patches-a4960a204dc18d9ef9d94de448a2180a675e235d.tar patches-a4960a204dc18d9ef9d94de448a2180a675e235d.tar.gz |
gnu: dub: Use invoke.
* gnu/packages/ldc.scm (dub): Use invoke.
-rw-r--r-- | gnu/packages/ldc.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/ldc.scm b/gnu/packages/ldc.scm index 5b7da284b7..e86117bd12 100644 --- a/gnu/packages/ldc.scm +++ b/gnu/packages/ldc.scm @@ -310,7 +310,7 @@ bootstrapping more recent compilers written in D.") (delete 'configure) ; no configure script (replace 'build (lambda _ - (zero? (system* "./build.sh")))) + (invoke "./build.sh"))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) |