~ruther/guix-local

a49c57a7931589001695397ccf03c4c91b4e1045 — Ludovic Courtès 11 years ago b47b2b5
gnu: cross-gcc: Use a single output.

* gnu/packages/cross-base.scm (cross-gcc): Add 'outputs' field.
1 files changed, 8 insertions(+), 2 deletions(-)

M gnu/packages/cross-base.scm
M gnu/packages/cross-base.scm => gnu/packages/cross-base.scm +8 -2
@@ 1,5 1,5 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;


@@ 76,7 76,13 @@ GCC that does not target a libc; otherwise, target that libc."
                         target))
    (source (origin (inherit (package-source gcc-4.8))
              (patches
               (list (search-patch "gcc-cross-environment-variables.patch")))))
               (list (search-patch
                      "gcc-cross-environment-variables.patch")))))

    ;; For simplicity, use a single output.  Otherwise libgcc_s & co. are not
    ;; found by default, etc.
    (outputs '("out"))

    (arguments
     `(#:implicit-inputs? #f
       #:modules ((guix build gnu-build-system)