[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: bootstrap: Honor the origin's names.
From: |
Ludovic Courtès |
Subject: |
01/01: gnu: bootstrap: Honor the origin's names. |
Date: |
Sun, 28 Feb 2016 14:29:02 +0000 |
civodul pushed a commit to branch core-updates
in repository guix.
commit 52c0c82f52ff8dd8165b86fd53988fba39664d7e
Author: Ludovic Courtès <address@hidden>
Date: Sun Feb 28 15:17:38 2016 +0100
gnu: bootstrap: Honor the origin's names.
Reported by Mark H Weaver <address@hidden>
at <https://lists.gnu.org/archive/html/guix-devel/2016-02/msg01100.html>.
* gnu/packages/bootstrap.scm (bootstrap-origin)[boot]: Honor NAME.
---
gnu/packages/bootstrap.scm | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index f5bf069..2cd8534 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <address@hidden>
+;;; Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <address@hidden>
;;; Copyright © 2014, 2015 Mark H Weaver <address@hidden>
;;;
;;; This file is part of GNU Guix.
@@ -61,7 +61,7 @@
(define (boot fetch)
(lambda* (url hash-algo hash
#:optional name #:key system)
- (fetch url hash-algo hash
+ (fetch url hash-algo hash name
#:guile %bootstrap-guile
#:system system)))