build-system/gnu: Remove the "debug" output when `strip-binaries?' is #f.

* guix/build-system/gnu.scm (gnu-build, gnu-cross-build): Delete "debug"
  from OUTPUTS when STRIP-BINARIES? is false.
* gnu/packages/cross-base.scm (cross-libc): Leave `outputs' unchanged.
  This reverts commit a4627d4.
This commit is contained in:
Ludovic Courtès 2013-07-04 13:26:35 +02:00
parent a4627d498a
commit 82f9b17687
2 changed files with 6 additions and 5 deletions

View file

@ -251,9 +251,6 @@ XBINUTILS and the cross tool chain."
#t))
,phases))))
;; Remove the "debug" output since stripping is disabled.
(outputs (delete "debug" (package-outputs glibc)))
(propagated-inputs `(("cross-linux-headers" ,xlinux-headers)))
(native-inputs `(("cross-gcc" ,xgcc)
("cross-binutils" ,xbinutils)