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 135691382C5 for ; Sun, 27 Dec 2020 23:15:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 530B9E0DE8; Sun, 27 Dec 2020 23:15:25 +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 3C36EE0DE8 for ; Sun, 27 Dec 2020 23:15:25 +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 85189340F63 for ; Sun, 27 Dec 2020 23:15:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0A56649 for ; Sun, 27 Dec 2020 23:15:22 +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: <1608346612.a0f348e99151277cfd52ce1343777844dae5e0e8.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: a0f348e99151277cfd52ce1343777844dae5e0e8 X-VCS-Branch: master Date: Sun, 27 Dec 2020 23:15:22 +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: 59c3903b-41bc-491b-b8c4-5657b443a9f8 X-Archives-Hash: df6553418aaa7b6c11d0e7c9c77771ac Message-ID: <20201227231522.qfctpXDZRYagTYlafkuDJResbRwb65Li6VQ2iAxejY8@z> commit: a0f348e99151277cfd52ce1343777844dae5e0e8 Author: Matt Turner gentoo org> AuthorDate: Sat Dec 19 01:58:21 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Dec 19 02:56:52 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=a0f348e9 catalyst: Set stage_path = chroot_path + root_path Signed-off-by: Matt Turner gentoo.org> catalyst/base/stagebase.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index fe79b55a..ba6b1a1b 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -545,7 +545,8 @@ class StageBase(TargetBase, ClearBase, GenBase): self.settings["catalyst_use"].append("bindist") def set_stage_path(self): - self.settings["stage_path"] = normpath(self.settings["chroot_path"]) + self.settings["stage_path"] = normpath(self.settings["chroot_path"] + + self.settings["root_path"]) def set_packages(self): pass