mhw pushed a commit to branch core-updates
in repository guix.

commit 5f55ca21051d37326afb3f8dd878340b5edd7015
Author: Mark H Weaver <[email protected]>
Date:   Tue Mar 27 00:53:20 2018 -0400

    gnu: aspell-dict-*: Use invoke.
    
    * gnu/packages/aspell.scm (aspell-dictionary): Use invoke in the custom
    configure phase.
---
 gnu/packages/aspell.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/aspell.scm b/gnu/packages/aspell.scm
index 7b23477..1e2149c 100644
--- a/gnu/packages/aspell.scm
+++ b/gnu/packages/aspell.scm
@@ -102,7 +102,7 @@ dictionaries, including personal ones.")
          (replace 'configure
            (lambda* (#:key outputs #:allow-other-keys)
              (let ((out (assoc-ref outputs "out")))
-               (zero? (system* "./configure"))))))
+               (invoke "./configure")))))
        #:make-flags
        (let ((out (assoc-ref %outputs "out")))
          (list (string-append "dictdir=" out "/lib/aspell")

Reply via email to