From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 48F3C138334 for ; Fri, 12 Jul 2019 07:24:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63E25E075F; Fri, 12 Jul 2019 07:24:49 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45A27E075F for ; Fri, 12 Jul 2019 07:24:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A2CB73477B3 for ; Fri, 12 Jul 2019 07:24:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 78AD55FD for ; Fri, 12 Jul 2019 07:24:45 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1562916181.2652a5494f4910700b18298796f7f7fefdf0ba78.slyfox@gentoo> Subject: [gentoo-commits] proj/crossdev:master commit in: wrappers/ X-VCS-Repository: proj/crossdev X-VCS-Files: wrappers/emerge-wrapper X-VCS-Directories: wrappers/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 2652a5494f4910700b18298796f7f7fefdf0ba78 X-VCS-Branch: master Date: Fri, 12 Jul 2019 07:24:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e47f4882-8f87-4b40-9a01-fb8b6ab2ec3c X-Archives-Hash: 6d841f6e086491909f289bb5db02e711 commit: 2652a5494f4910700b18298796f7f7fefdf0ba78 Author: Sergei Trofimovich gentoo org> AuthorDate: Fri Jul 12 07:23:01 2019 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Fri Jul 12 07:23:01 2019 +0000 URL: https://gitweb.gentoo.org/proj/crossdev.git/commit/?id=2652a549 wrappers: tweak rarning message to contain config file paths commit 393e1cd0c6d3ac81fa166bafe6065d42849f622c ("wrappers: create profile/ and override ARCH, LIBC and KERNEL there") broke config paths reporting as it upgraded 'conf' singleton to 'confs' array but did not update warning message accordingly. Signed-off-by: Sergei Trofimovich gentoo.org> wrappers/emerge-wrapper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrappers/emerge-wrapper b/wrappers/emerge-wrapper index c652df5..d084a96 100755 --- a/wrappers/emerge-wrapper +++ b/wrappers/emerge-wrapper @@ -24,7 +24,7 @@ emit_setup_warning() if ! ${setup_warning} ; then setup_warning=true echo "!!! WARNING - Cannot auto-configure CHOST ${CHOST};" - echo "!!! You should edit ${conf}" + echo "!!! You should edit ${confs[*]}" echo "!!! by hand to complete your configuration." fi echo "!!! $*"