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 40916138351 for ; Sat, 28 Mar 2020 20:07:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26259E0CB4; Sat, 28 Mar 2020 20:07:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 04288E0C4C for ; Sat, 28 Mar 2020 20:07:10 +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 3210434F99D for ; Sat, 28 Mar 2020 20:07:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4F7381AF for ; Sat, 28 Mar 2020 20:07:06 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1585381199.92706a41fadbccf0a39af08ea2a52a2696c68603.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/chroot-functions.sh X-VCS-Directories: targets/support/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 92706a41fadbccf0a39af08ea2a52a2696c68603 X-VCS-Branch: master Date: Sat, 28 Mar 2020 20:07:06 +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: e018a58a-abe6-4a83-a880-b28057fd8b38 X-Archives-Hash: 1e7ceca32ff2425c189f5a46405dac39 commit: 92706a41fadbccf0a39af08ea2a52a2696c68603 Author: Matt Turner gentoo org> AuthorDate: Fri Mar 27 23:30:10 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Mar 28 07:39:59 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=92706a41 targets: Fix setting FEATURES="clean-logs" This likely fixes a bug in 8ca52570aa2d ("keep logs outside of chroot") that would have prevented any logs (except for those from dev-util/ccache, sys-devel/distcc, and sys-devel/icecream) from being kept, since "clean-logs" was added to FEATURES in the wrong place. Signed-off-by: Matt Turner gentoo.org> targets/support/chroot-functions.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/targets/support/chroot-functions.sh b/targets/support/chroot-functions.sh index 05f311cf..8996119c 100755 --- a/targets/support/chroot-functions.sh +++ b/targets/support/chroot-functions.sh @@ -78,7 +78,8 @@ get_libdir() { setup_myfeatures(){ setup_myemergeopts - export FEATURES="-news clean-logs" + export clst_myfeatures="-news clean-logs" + export FEATURES="${clst_myfeatures}" if [ -n "${clst_CCACHE}" ] then export clst_myfeatures="${clst_myfeatures} ccache" @@ -132,7 +133,7 @@ setup_myfeatures(){ export PATH="/usr/lib/icecc/bin:${PATH}" export PREROOTPATH="/usr/lib/icecc/bin" fi - export FEATURES="${clst_myfeatures} -news" + export FEATURES="${clst_myfeatures}" } setup_myemergeopts(){