[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: cunit: Replace bootstrap phase.
From: |
Ricardo Wurmus |
Subject: |
01/01: gnu: cunit: Replace bootstrap phase. |
Date: |
Thu, 15 Mar 2018 07:09:45 -0400 (EDT) |
rekado pushed a commit to branch core-updates
in repository guix.
commit 7aa37aa033f33246f69c9dd8a58506b0977fba61
Author: Ricardo Wurmus <address@hidden>
Date: Thu Mar 15 12:09:21 2018 +0100
gnu: cunit: Replace bootstrap phase.
* gnu/packages/check.scm (cunit)[arguments]: Replace bootstrap phase.
---
gnu/packages/check.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 73d3efd..baebcb9 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -24,7 +24,7 @@
;;; Copyright © 2017 Mathieu Othacehe <address@hidden>
;;; Copyright © 2017 Kei Kebreau <address@hidden>
;;; Copyright © 2017 ng0 <address@hidden>
-;;; Copyright © 2015, 2017 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2015, 2017, 2018 Ricardo Wurmus <address@hidden>
;;; Copyright © 2016, 2017, 2018 Marius Bakke <address@hidden>
;;; Copyright © 2017 Ludovic Courtès <address@hidden>
;;; Copyright © 2018 Fis Trivial <address@hidden>
@@ -104,9 +104,11 @@ source code editors and IDEs.")
(build-system gnu-build-system)
(arguments '(#:phases
(modify-phases %standard-phases
- (add-before 'configure 'autoconf
- (lambda _
- (zero? (system* "autoreconf" "-vfi")))))))
+ ;; XXX: The "bootstrap" phase detects the "bootstrap"
+ ;; script, but fails to execute it, so we bootstrap
+ ;; manually.
+ (replace 'bootstrap
+ (lambda _ (invoke "autoreconf" "-vfi"))))))
(native-inputs
`(("automake" ,automake)
("autoconf" ,autoconf)