diff options
author | Mark H Weaver <mhw@netris.org> | 2014-08-20 01:44:50 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-08-20 01:44:50 -0400 |
commit | cba95006a6129ffe2a29ff9f4ad10549214114a0 (patch) | |
tree | 938269c18b6320d5b045c0a63c0d201bc874896f /gnu/packages/guile.scm | |
parent | 785c33e3af9107118e57ba9efb39152f1b467a6f (diff) | |
download | guix-cba95006a6129ffe2a29ff9f4ad10549214114a0.tar guix-cba95006a6129ffe2a29ff9f4ad10549214114a0.tar.gz |
gnu: guile-2.0: Make 'bash' an input unconditionally.
* gnu/packages/guile.scm (guile-2.0): Make 'bash' an input
unconditionally.
Diffstat (limited to 'gnu/packages/guile.scm')
-rw-r--r-- | gnu/packages/guile.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 16e96848d6..8433b51263 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -121,11 +121,7 @@ without requiring the source code to be rewritten.") (native-inputs `(("pkgconfig" ,pkg-config))) (inputs `(("libffi" ,libffi) ("readline" ,readline) - - ;; TODO: On next core-updates, make Bash input unconditional. - ,@(if (%current-target-system) - `(("bash" ,bash)) - '()))) + ("bash" ,bash))) (propagated-inputs `( ;; These ones aren't normally needed here, but since `libguile-2.0.la' |