[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/07: gnu: z3: Unconditionally return #T from build phases.
From: |
guix-commits |
Subject: |
04/07: gnu: z3: Unconditionally return #T from build phases. |
Date: |
Sun, 28 Apr 2019 10:06:10 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 32d5360f43908a34b3315ec7d1d558504ef5257e
Author: Ricardo Wurmus <address@hidden>
Date: Sun Apr 28 11:37:30 2019 +0200
gnu: z3: Unconditionally return #T from build phases.
* gnu/packages/maths.scm (z3)[arguments]: Use INVOKE in build phases.
---
gnu/packages/maths.scm | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 6aa402b..adc8c25 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -3983,8 +3983,7 @@ as equations, scalars, vectors, and matrices.")
#t))
(add-before 'configure 'bootstrap
(lambda _
- (zero?
- (system* "python" "scripts/mk_make.py"))))
+ (invoke "python" "scripts/mk_make.py")))
;; work around gnu-build-system's setting --enable-fast-install
;; (z3's `configure' is a wrapper around the above python file,
;; which fails when passed --enable-fast-install)
@@ -3999,12 +3998,12 @@ as equations, scalars, vectors, and matrices.")
(add-before 'check 'make-test-z3
(lambda _
;; Build the test suite executable.
- (zero? (system* "make" "test-z3" "-j"
- (number->string (parallel-job-count))))))
+ (invoke "make" "test-z3" "-j"
+ (number->string (parallel-job-count)))))
(replace 'check
(lambda _
;; Run all the tests that don't require arguments.
- (zero? (system* "./test-z3" "/a")))))))
+ (invoke "./test-z3" "/a"))))))
(native-inputs
`(("which" ,which)
("python" ,python-wrapper)))
- branch master updated (7d62fa2 -> cee0612), guix-commits, 2019/04/28
- 02/07: gnu: make-blis: Always return #T from configure phase., guix-commits, 2019/04/28
- 01/07: gnu: kdevplatform: Use INVOKE., guix-commits, 2019/04/28
- 04/07: gnu: z3: Unconditionally return #T from build phases.,
guix-commits <=
- 03/07: gnu: atlas: Always return #T from build phases., guix-commits, 2019/04/28
- 06/07: gnu: hypre: Unconditionally return #T from build phases., guix-commits, 2019/04/28
- 05/07: gnu: jacal: Unconditionally return #T from configure phase., guix-commits, 2019/04/28
- 07/07: gnu: Remove unused module reference., guix-commits, 2019/04/28