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.
This commit is contained in:
parent
5d0984595c
commit
f111b327a9
|
@ -123,7 +123,7 @@
|
||||||
;;;
|
;;;
|
||||||
|
|
||||||
(define* (union inputs
|
(define* (union inputs
|
||||||
#:key (guile (%guile-for-build)) (system (%current-system))
|
#:key (guile (%guile-for-build))
|
||||||
(name "union"))
|
(name "union"))
|
||||||
"Return a derivation that builds the union of INPUTS. INPUTS is a list of
|
"Return a derivation that builds the union of INPUTS. INPUTS is a list of
|
||||||
input tuples."
|
input tuples."
|
||||||
|
@ -141,7 +141,6 @@ input tuples."
|
||||||
(union-build #$output inputs)))
|
(union-build #$output inputs)))
|
||||||
|
|
||||||
(gexp->derivation name builder
|
(gexp->derivation name builder
|
||||||
#:system system
|
|
||||||
#:modules '((guix build union))
|
#:modules '((guix build union))
|
||||||
#:guile-for-build guile
|
#:guile-for-build guile
|
||||||
#:local-build? #t))
|
#:local-build? #t))
|
||||||
|
|
Loading…
Reference in New Issue