diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-07-03 23:55:04 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-07-03 23:55:04 +0200 |
commit | 9bf62d9b1d8058b7c428932d40ac91dd48e988dc (patch) | |
tree | 3ad3ce4e3ee981c89b3967db45588f7ec7834d4f /gnu/packages/base.scm | |
parent | be58d01a7e60601eb7b00a5fd3b724fdafb8dd29 (diff) | |
download | guix-9bf62d9b1d8058b7c428932d40ac91dd48e988dc.tar guix-9bf62d9b1d8058b7c428932d40ac91dd48e988dc.tar.gz |
gnu: Add a "debug" output for some packages.
* gnu/packages/base.scm (coreutils, gnu-make, glibc): Add a "debug" output.
* gnu/packages/bdw-gc.scm (libgc): Likewise.
* gnu/packages/guile.scm (guile-2.0): Likewise.
* gnu/packages/libffi.scm (libffi): Likewise.
* gnu/packages/multiprecision.scm (gmp, mpfr, mpc): Likewise.
Diffstat (limited to 'gnu/packages/base.scm')
-rw-r--r-- | gnu/packages/base.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 95052775c5..7ca7ec74c6 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -279,6 +279,7 @@ The tools supplied with this package are: ,@(if (%current-target-system) '() `(("perl" ,perl))))) + (outputs '("out" "debug")) (arguments `(#:parallel-build? #f ; help2man may be called too early #:phases (alist-cons-before @@ -316,6 +317,7 @@ are expected to exist on every operating system.") (build-system gnu-build-system) (native-inputs `(("patch/impure-dirs" ,(search-patch "make-impure-dirs.patch")))) + (outputs '("out" "debug")) (arguments '(#:patches (list (assoc-ref %build-inputs "patch/impure-dirs")) #:phases (alist-cons-before @@ -403,7 +405,7 @@ BFD (Binary File Descriptor) library, `gprof', `nm', `strip', etc.") ;; reference to them anyway, so there's no space savings here. ;; TODO: Eventually we may want to add a $LOCALE_ARCHIVE search path like ;; Nixpkgs does. - (outputs '("out" "locales")) + (outputs '("out" "locales" "debug")) (arguments `(#:out-of-source? #t |