diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-04-28 11:38:56 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-04-28 16:05:57 +0200 |
commit | 9cd82b1c9dca1772f769b27999e4b9a24e2e787e (patch) | |
tree | 4dc47f6d54f481db975e00d634858d1693f27b86 /gnu/packages/maths.scm | |
parent | 32d5360f43908a34b3315ec7d1d558504ef5257e (diff) | |
download | guix-9cd82b1c9dca1772f769b27999e4b9a24e2e787e.tar guix-9cd82b1c9dca1772f769b27999e4b9a24e2e787e.tar.gz |
gnu: jacal: Unconditionally return #T from configure phase.
* gnu/packages/maths.scm (jacal)[arguments]: Use INVOKE in configure phase.
Diffstat (limited to 'gnu/packages/maths.scm')
-rw-r--r-- | gnu/packages/maths.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index adc8c255ac..788bfc882a 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -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))) |