From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonathan Brielmaier Subject: bug#37505: "make check" fails on a fresh Guix checkout Date: Wed, 25 Sep 2019 18:22:29 +0200 Message-ID: <57a231e2-3dbb-a2ab-e075-bd2a3d5ea173@web.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:42825) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iDA4F-0006bE-4j for bug-guix@gnu.org; Wed, 25 Sep 2019 12:23:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iDA4E-0004le-73 for bug-guix@gnu.org; Wed, 25 Sep 2019 12:23:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:33548) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iDA4E-0004lS-0a for bug-guix@gnu.org; Wed, 25 Sep 2019 12:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iDA4D-0004C2-Pl for bug-guix@gnu.org; Wed, 25 Sep 2019 12:23:01 -0400 In-Reply-To: Sender: "Debbugs-submit" Resent-Message-ID: Content-Language: en-US List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 37505@debbugs.gnu.org The following diff mitigates this build failure for me: diff --git a/guix/scripts/pull.scm b/guix/scripts/pull.scm index 0372278705..04970cf503 100644 --- a/guix/scripts/pull.scm +++ b/guix/scripts/pull.scm @@ -304,7 +304,7 @@ to display." (new (let ((count (length new))) (format (current-error-port) - (N_ " ~*One new channel:~%" + (N_ " ~a new channel:~%" " ~a new channels:~%" count) count) (for-each display-channel new)))) @@ -314,7 +314,7 @@ to display." (removed (let ((count (length removed))) (format (current-error-port) - (N_ " ~*One channel removed:~%" + (N_ " ~a channel removed:~%" " ~a channels removed:~%" count) count) (for-each display-channel removed))))