From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konrad Hinsen Subject: bug#37505: "make check" fails on a fresh Guix checkout Date: Tue, 01 Oct 2019 17:11:41 +0200 Message-ID: References: <87a7akreuf.fsf@gnu.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:44289) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iFJos-0002vX-Qr for bug-guix@gnu.org; Tue, 01 Oct 2019 11:12:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iFJor-0005WZ-JZ for bug-guix@gnu.org; Tue, 01 Oct 2019 11:12:06 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53775) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iFJor-0005WQ-Fk for bug-guix@gnu.org; Tue, 01 Oct 2019 11:12:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iFJor-0003kV-Ag for bug-guix@gnu.org; Tue, 01 Oct 2019 11:12:05 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: 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: Ludovic =?UTF-8?Q?Court=C3=A8s?= Cc: 37505-done@debbugs.gnu.org --=-=-= Content-Type: text/plain Konrad Hinsen writes: > Konrad Hinsen writes: > >> Unfortunately, a very similar error still blocks compiling a fresh Guix >> checkout: > > Sorry, false alarm. I have been typing in the wrong terminal window. OK, I triple-checked: there still is a problem. There are two places in pull.scm that used '~*'. The attached patch removes the second one. Konrad. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-pull-Do-not-use-which-msgfmt-fails-to-interpret.patch >From 370579d7ac4e01fd66bdf4518d31f7d3bc17a65a Mon Sep 17 00:00:00 2001 From: Konrad Hinsen Date: Tue, 1 Oct 2019 17:06:58 +0200 Subject: [PATCH] pull: Do not use '~*', which 'msgfmt' fails to interpret. Really fixes . --- guix/scripts/pull.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guix/scripts/pull.scm b/guix/scripts/pull.scm index e018985469..04970cf503 100644 --- a/guix/scripts/pull.scm +++ b/guix/scripts/pull.scm @@ -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)))) -- 2.23.0 --=-=-=--