gnu: jacal: Unconditionally return #T from configure phase.
* gnu/packages/maths.scm (jacal)[arguments]: Use INVOKE in configure phase.
This commit is contained in:
parent
32d5360f43
commit
9cd82b1c9d
|
@ -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)))
|
||||
|
|
Loading…
Reference in New Issue