diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-10-13 13:01:37 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-10-13 16:26:49 +0200 |
commit | c86447f486506d468e08ef42f5683883cafadfda (patch) | |
tree | 7c7fdb73ce3dfd23212e7b45d1ae2775b0672b0b /gnu/packages/bash.scm | |
parent | e3d9da3c0c35cb4eac0af0f280d5342282eae7df (diff) | |
download | patches-c86447f486506d468e08ef42f5683883cafadfda.tar patches-c86447f486506d468e08ef42f5683883cafadfda.tar.gz |
gnu: bash-minimal: Remove "include" output.
* gnu/packages/bash.scm (bash-minimal)[outputs]: New field.
(static-bash)[outputs]: Remove.
Diffstat (limited to 'gnu/packages/bash.scm')
-rw-r--r-- | gnu/packages/bash.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/bash.scm b/gnu/packages/bash.scm index c12c0ac9a0..d328d711d1 100644 --- a/gnu/packages/bash.scm +++ b/gnu/packages/bash.scm @@ -182,6 +182,10 @@ without modification.") (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 @@ without modification.") (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)) |