mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 01:26:43 +01:00
gnu: guile: Depend on 'bash-minimal' rather than 'bash'.
* gnu/packages/guile.scm (guile-2.0)[inputs]: Depend on BASH-MINIMAL instead of BASH.
This commit is contained in:
parent
4cc80c946b
commit
baf549df14
1 changed files with 5 additions and 1 deletions
|
@ -153,7 +153,11 @@ (define-public guile-2.0
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue