mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: bash-minimal: Remove "include" output.
* gnu/packages/bash.scm (bash-minimal)[outputs]: New field. (static-bash)[outputs]: Remove.
This commit is contained in:
parent
e3d9da3c0c
commit
c86447f486
1 changed files with 4 additions and 4 deletions
|
@ -182,6 +182,10 @@ (define-public bash-minimal
|
|||
(package (inherit bash)
|
||||
(name "bash-minimal")
|
||||
(inputs '()) ; no readline, no curses
|
||||
|
||||
;; No "include" output because there's no support for loadable modules.
|
||||
(outputs (delete "include" (package-outputs bash)))
|
||||
|
||||
(arguments
|
||||
(let ((args `(#:modules ((guix build gnu-build-system)
|
||||
(guix build utils)
|
||||
|
@ -217,10 +221,6 @@ (define-public static-bash
|
|||
(package
|
||||
(inherit bash)
|
||||
(name "bash-static")
|
||||
|
||||
;; No "include" output because there's no support for loadable modules.
|
||||
(outputs (delete "include" (package-outputs bash)))
|
||||
|
||||
(arguments
|
||||
(substitute-keyword-arguments
|
||||
`(#:allowed-references ("out") ,@(package-arguments bash))
|
||||
|
|
Loading…
Reference in a new issue