diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-11 11:36:39 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-11 11:36:39 +0100 |
commit | 7a52d0e075baebe2c04331b82d5974f2db9bf9f0 (patch) | |
tree | ecf73188150698f8ab53ce9c682fdda06b3637aa /gnu/packages | |
parent | d68a15806b26ee23bf83c92ed29d2d4b1024b919 (diff) |
gnu: dotconf: Remove custom bootstrap phase.
* gnu/packages/textutils.scm (dotconf)[arguments]: Remove autoreconf phase.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/textutils.scm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index d4e306483e..c814e988b1 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -577,13 +577,7 @@ categories.") (base32 "0lsnh0yaw44psmx59hq94cj1932gscp5h8d3cnh05l0svr0cy7kz")))) (build-system gnu-build-system) - (arguments - `(#:tests? #f ; FIXME maketest.sh does not work. - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'autoreconf - (lambda _ - (zero? (system* "autoreconf" "-vif"))))))) + (arguments `(#:tests? #f)) ; FIXME maketest.sh does not work. (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) |