diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-02-06 15:25:08 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-02-06 15:25:28 +0100 |
commit | 431f35f05154d9e8ab6e9729f78bbbb88d28977a (patch) | |
tree | f4ea79be9fbb11923b250fe92c3312bb69394806 /gnu/packages/make-bootstrap.scm | |
parent | eb0119efde826590a13973ab928c173780a7f257 (diff) | |
download | guix-431f35f05154d9e8ab6e9729f78bbbb88d28977a.tar guix-431f35f05154d9e8ab6e9729f78bbbb88d28977a.tar.gz |
gnu: make-bootstrap: Fix `%binutils-static-stripped'.
* gnu/packages/make-bootstrap.scm (%binutils-static-stripped): Add
distinguishing `name' field. Add `output' field to have a single
"out" output (followup to 4873f8e). Reported by Nikita.
Diffstat (limited to 'gnu/packages/make-bootstrap.scm')
-rw-r--r-- | gnu/packages/make-bootstrap.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm index 091b5c0417..8275344b6c 100644 --- a/gnu/packages/make-bootstrap.scm +++ b/gnu/packages/make-bootstrap.scm @@ -249,7 +249,9 @@ (define %binutils-static-stripped ;; The subset of Binutils that we need. (package (inherit %binutils-static) + (name (string-append (package-name %binutils-static) "-stripped")) (build-system trivial-build-system) + (outputs '("out")) (arguments `(#:modules ((guix build utils)) #:builder |