diff options
author | Marius Bakke <marius@gnu.org> | 2021-05-16 11:35:40 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-05-22 17:08:14 +0200 |
commit | 5d3ac92cc738b069bd45eca4b0aec6deab5f17cc (patch) | |
tree | 0a04af7547c93f22438f4e1c3ed778f2510a69cb | |
parent | 1496bb5c102bee51c3ab4d0b9ec750f652f2c1fd (diff) |
gnu: automake: Remove unnecessary conditional.
* gnu/packages/autotools.scm (automake)[inputs]: Add all unconditionally.
-rw-r--r-- | gnu/packages/autotools.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/autotools.scm b/gnu/packages/autotools.scm index e9935099e3..cdd7425a07 100644 --- a/gnu/packages/autotools.scm +++ b/gnu/packages/autotools.scm @@ -329,12 +329,9 @@ output is indexed in many ways to simplify browsing.") (search-patches "automake-skip-amhello-tests.patch")))) (build-system gnu-build-system) (inputs - ;; TODO: remove `if' in the next rebuild cycle. - (if (%current-target-system) - `(("autoconf" ,autoconf-wrapper) - ("bash" ,bash-minimal) - ("perl" ,perl)) - '())) + `(("autoconf" ,autoconf-wrapper) + ("bash" ,bash-minimal) + ("perl" ,perl))) (native-inputs `(("autoconf" ,autoconf-wrapper) ("perl" ,perl))) |