~ruther/guix-local

f111b327a960b7cdfe77557dc06b5706a72e38dd — Ludovic Courtès 11 years ago 5d09845
system: Remove erroneous system binding in profile maker.

Partly fixes <http://bugs.gnu.org/18002>.
Reported by David Thompson <dthompson2@worcester.edu>.

* gnu/system.scm (union): Remove #:system parameter, which was unused.
1 files changed, 1 insertions(+), 2 deletions(-)

M gnu/system.scm
M gnu/system.scm => gnu/system.scm +1 -2
@@ 123,7 123,7 @@
;;;

(define* (union inputs
                #:key (guile (%guile-for-build)) (system (%current-system))
                #:key (guile (%guile-for-build))
                (name "union"))
  "Return a derivation that builds the union of INPUTS.  INPUTS is a list of
input tuples."


@@ 141,7 141,6 @@ input tuples."
        (union-build #$output inputs)))

  (gexp->derivation name builder
                    #:system system
                    #:modules '((guix build union))
                    #:guile-for-build guile
                    #:local-build? #t))