gnu: jacal: Unconditionally return #T from configure phase.

* gnu/packages/maths.scm (jacal)[arguments]: Use INVOKE in configure phase.
This commit is contained in:
Ricardo Wurmus 2019-04-28 11:38:56 +02:00
parent 32d5360f43
commit 9cd82b1c9d
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 4 additions and 4 deletions

View File

@ -3944,10 +3944,10 @@ Longest Commons Subsequence of a set of strings.")
(assoc-ref outputs "out"))
(chmod wrapper #o555))))
(replace 'configure
(lambda* (#:key inputs outputs #:allow-other-keys)
(zero? (system* "./configure"
(string-append "--prefix="
(assoc-ref outputs "out")))))))))
(lambda* (#:key outputs #:allow-other-keys)
(invoke "./configure"
(string-append "--prefix="
(assoc-ref outputs "out"))))))))
(inputs `(("scm" ,scm)))
(native-inputs `(("unzip" ,unzip)
("texinfo" ,texinfo)))