From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS22989 209.51.188.0/24 X-Spam-Status: No, score=-3.4 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, SPF_HELO_NONE,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 55C331F4BE for ; Mon, 7 Oct 2019 12:33:57 +0000 (UTC) Received: from localhost ([::1]:44092 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iHSD5-0004xp-8i for normalperson@yhbt.net; Mon, 07 Oct 2019 08:33:55 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:52920) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iHP5I-000682-Gb for bug-gnulib@gnu.org; Mon, 07 Oct 2019 05:13:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iHP5G-0001M6-AA for bug-gnulib@gnu.org; Mon, 07 Oct 2019 05:13:40 -0400 Received: from mx2.suse.de ([195.135.220.15]:39690 helo=mx1.suse.de) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iHP5G-0001Kc-4H for bug-gnulib@gnu.org; Mon, 07 Oct 2019 05:13:38 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 1532DB14B; Mon, 7 Oct 2019 09:13:36 +0000 (UTC) From: "Bernhard M. Wiedemann" To: bug-gnulib@gnu.org Subject: [PATCH] Allow error output to be printed Date: Mon, 7 Oct 2019 11:13:27 +0200 Message-Id: <20191007091327.21338-1-bwiedemann@suse.de> X-Mailer: git-send-email 2.16.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] [fuzzy] X-Received-From: 195.135.220.15 X-Mailman-Approved-At: Mon, 07 Oct 2019 08:33:50 -0400 X-BeenThere: bug-gnulib@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Gnulib discussion list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: "Bernhard M. Wiedemann" , Bernhard Voelker Errors-To: bug-gnulib-bounces+normalperson=yhbt.net@gnu.org Sender: "bug-gnulib" e.g. when running in a build environment without CA certificates, wget would silently fail without giving a hint to the user about the cause. For background see https://gitlab.com/gnuwget/wget2/merge_requests/450#note_226179055 It seems, -nv still shows some non-error output. wget -q was introduced in commit feaf4df70588cf1ee30b4879a1048cc143135a67 * build-aux/bootstrap: allow wget error output to be printed --- build-aux/bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/bootstrap b/build-aux/bootstrap index 5b08e7e2d..e273ea732 100755 --- a/build-aux/bootstrap +++ b/build-aux/bootstrap @@ -166,7 +166,7 @@ bootstrap_epilogue() { :; } # specified directory. Fill in the first %s with the destination # directory and the second with the domain name. po_download_command_format=\ -"wget --mirror --level=1 -nd -q -A.po -P '%s' \ +"wget --mirror --level=1 -nd -nv -A.po -P '%s' \ https://translationproject.org/latest/%s/" # Prefer a non-empty tarname (4th argument of AC_INIT if given), else -- 2.16.4