mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: bash-minimal: Override keywords from 'bash'.
'bash-minimal' is a package derived from 'bash' package. 'bash-minimal' is supposed to override keywords from 'bash', but does not do it due to ordering issue. This patch moves #:modules last. Fixes the bootstrap failure reported by rennes and Manolis Ragkousis and tracked down by Andy Wingo in <https://lists.gnu.org/archive/html/guix-devel/2017-05/msg00010.html>. * gnu/packages/bash.scm (bash-minimal)[arguments]: Move #:modules after (package-arguments bash). Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
ee33f9a742
commit
a30188f561
1 changed files with 3 additions and 3 deletions
|
@ -211,11 +211,11 @@ (define-public bash-minimal
|
||||||
(outputs (delete "include" (package-outputs bash)))
|
(outputs (delete "include" (package-outputs bash)))
|
||||||
|
|
||||||
(arguments
|
(arguments
|
||||||
(let ((args `(#:modules ((guix build gnu-build-system)
|
(let ((args `(,@(package-arguments bash)
|
||||||
|
#:modules ((guix build gnu-build-system)
|
||||||
(guix build utils)
|
(guix build utils)
|
||||||
(srfi srfi-1)
|
(srfi srfi-1)
|
||||||
(srfi srfi-26))
|
(srfi srfi-26)))))
|
||||||
,@(package-arguments bash))))
|
|
||||||
(substitute-keyword-arguments args
|
(substitute-keyword-arguments args
|
||||||
((#:configure-flags flags)
|
((#:configure-flags flags)
|
||||||
`(list "--without-bash-malloc"
|
`(list "--without-bash-malloc"
|
||||||
|
|
Loading…
Reference in a new issue