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.
master
Ludovic Courtès 2014-07-12 22:16:34 +02:00
parent 5d0984595c
commit f111b327a9
1 changed files with 1 additions and 2 deletions

View File

@ -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))