nckx pushed a commit to branch master
in repository guix.

commit 655a0c65be6b3653c61310e730d5128670ffa5b1
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Mon May 25 20:52:39 2020 +0200

    gnu: radare2: Use OUTPUTS keyword.
    
    * gnu/packages/engineering.scm (radare2)[arguments]: Substitute OUTPUTS for 
%OUTPUTS.
---
 gnu/packages/engineering.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 6628a45..9132743 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -1360,8 +1360,8 @@ bindings for Python, Java, OCaml and more.")
        #:phases
        (modify-phases %standard-phases
          (add-before 'configure 'mklibdir
-           (lambda* (#:key inputs #:allow-other-keys)
-             (mkdir-p (string-append (assoc-ref %outputs "out") "/lib"))
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (mkdir-p (string-append (assoc-ref outputs "out") "/lib"))
              #t)))
        #:configure-flags
        (list "--with-sysmagic" "--with-syszip" "--with-syscapstone"

Reply via email to