summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-07-12 22:16:34 +0200
committerLudovic Courtès <ludo@gnu.org>2014-07-12 23:17:53 +0200
commitf111b327a960b7cdfe77557dc06b5706a72e38dd (patch)
treeddef56862e254d8c4b9d20868cb72fa9efb83c65 /gnu
parent5d0984595c77b1b0acd84eb4684f786de5f95aff (diff)
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.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/system.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/system.scm b/gnu/system.scm
index a365fb57e46..cdb5be6bbb1 100644
--- a/gnu/system.scm
+++ b/gnu/system.scm
@@ -123,7 +123,7 @@
123;;; 123;;;
124 124
125(define* (union inputs 125(define* (union inputs
126 #:key (guile (%guile-for-build)) (system (%current-system)) 126 #:key (guile (%guile-for-build))
127 (name "union")) 127 (name "union"))
128 "Return a derivation that builds the union of INPUTS. INPUTS is a list of 128 "Return a derivation that builds the union of INPUTS. INPUTS is a list of
129input tuples." 129input tuples."
@@ -141,7 +141,6 @@ input tuples."
141 (union-build #$output inputs))) 141 (union-build #$output inputs)))
142 142
143 (gexp->derivation name builder 143 (gexp->derivation name builder
144 #:system system
145 #:modules '((guix build union)) 144 #:modules '((guix build union))
146 #:guile-for-build guile 145 #:guile-for-build guile
147 #:local-build? #t)) 146 #:local-build? #t))