guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: guile: Depend on 'bash-minimal' rather than 'bash'.


From: Ludovic Courtès
Subject: 03/03: gnu: guile: Depend on 'bash-minimal' rather than 'bash'.
Date: Fri, 2 Jun 2017 11:22:15 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit baf549df14c6d4a63bfbd0054b865446a97e872a
Author: Ludovic Courtès <address@hidden>
Date:   Fri Jun 2 15:34:36 2017 +0200

    gnu: guile: Depend on 'bash-minimal' rather than 'bash'.
    
    * gnu/packages/guile.scm (guile-2.0)[inputs]: Depend on BASH-MINIMAL
    instead of BASH.
---
 gnu/packages/guile.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index bb34063..bcfbe65 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -153,7 +153,11 @@ without requiring the source code to be rewritten.")
    (inputs `(("libffi" ,libffi)
              ("readline" ,readline)
              ,@(libiconv-if-needed)
-             ,@(if (target-mingw?) '() `(("bash" ,bash)))))
+
+             ;; We need Bash when cross-compiling because some of the scripts
+             ;; in bin/ refer to it.  Use 'bash-minimal' because we don't need
+             ;; an interactive Bash with Readline and all.
+             ,@(if (target-mingw?) '() `(("bash" ,bash-minimal)))))
    (propagated-inputs
     `( ;; These ones aren't normally needed here, but since `libguile-2.0.la'
        ;; reads `-lltdl -lunistring', adding them here will add the needed



reply via email to

[Prev in Thread] Current Thread [Next in Thread]