gnu: aspell-dict-*: Use invoke.
* gnu/packages/aspell.scm (aspell-dictionary): Use invoke in the custom configure phase.
This commit is contained in:
parent
1e868858fd
commit
5f55ca2105
|
@ -102,7 +102,7 @@ dictionaries, including personal ones.")
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(zero? (system* "./configure"))))))
|
(invoke "./configure")))))
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(let ((out (assoc-ref %outputs "out")))
|
(let ((out (assoc-ref %outputs "out")))
|
||||||
(list (string-append "dictdir=" out "/lib/aspell")
|
(list (string-append "dictdir=" out "/lib/aspell")
|
||||||
|
|
Loading…
Reference in New Issue