guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch core-updates updated: ci: Remove duplicate ".SYSTEM" extension fo


From: guix-commits
Subject: branch core-updates updated: ci: Remove duplicate ".SYSTEM" extension for cross-compilation jobs.
Date: Sat, 03 Jul 2021 14:01:53 -0400

This is an automated email from the git hooks/post-receive script.

civodul pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new 39f1486  ci: Remove duplicate ".SYSTEM" extension for 
cross-compilation jobs.
39f1486 is described below

commit 39f1486efd70712416ca784f9014132644b04155
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sat Jul 3 20:01:05 2021 +0200

    ci: Remove duplicate ".SYSTEM" extension for cross-compilation jobs.
    
    * gnu/ci.scm (package-cross-job): Remove ".SYSTEM".
---
 gnu/ci.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/ci.scm b/gnu/ci.scm
index c5de25e..7e6053a 100644
--- a/gnu/ci.scm
+++ b/gnu/ci.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Ludovic 
Courtès <ludo@gnu.org>
+;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 
Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2017, 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
 ;;; Copyright © 2018, 2019 Clément Lassieur <clement@lassieur.org>
 ;;; Copyright © 2020 Julien Lepiller <julien@lepiller.eu>
@@ -129,7 +129,7 @@ building the derivation."
 (define (package-cross-job store job-name package target system)
   "Return a job called TARGET.JOB-NAME that cross-builds PACKAGE for TARGET on
 SYSTEM."
-  (let ((name (string-append target "." job-name "." system)))
+  (let ((name (string-append target "." job-name)))
     (package-job store name package system
                  #:cross? #t
                  #:target target)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]