diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-03-15 12:09:21 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-03-15 12:09:21 +0100 |
commit | 7aa37aa033f33246f69c9dd8a58506b0977fba61 (patch) | |
tree | 4dc64040c49b98f9119d928df258b33925bd6642 /gnu/packages | |
parent | 2b4e5568508a85c47b602580a6b6930f3bf8bdec (diff) | |
download | patches-7aa37aa033f33246f69c9dd8a58506b0977fba61.tar patches-7aa37aa033f33246f69c9dd8a58506b0977fba61.tar.gz |
gnu: cunit: Replace bootstrap phase.
* gnu/packages/check.scm (cunit)[arguments]: Replace bootstrap phase.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/check.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 73d3efd9e1..baebcb9b77 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -24,7 +24,7 @@ ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2017 Kei Kebreau <kkebreau@posteo.net> ;;; Copyright © 2017 ng0 <ng0@infotropique.org> -;;; Copyright © 2015, 2017 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2015, 2017, 2018 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016, 2017, 2018 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2017 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com> @@ -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) |