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 42F041382C5 for ; Sun, 20 Dec 2020 02:28:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5B26BE092E; Sun, 20 Dec 2020 02:28:54 +0000 (UTC) Received: from mail-qt1-f177.google.com (mail-qt1-f177.google.com [209.85.160.177]) (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 0F36FE092E for ; Sun, 20 Dec 2020 02:28:53 +0000 (UTC) Received: by mail-qt1-f177.google.com with SMTP id j26so4416335qtq.8 for ; Sat, 19 Dec 2020 18:28:53 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=luI50mRA6CP5KKdN8uUv0EQARDKVmBndo4IwSdZCMzo=; b=QHkWC0ANr5Jd9wiLM/WSasSTbZBvE4O0GH29u3UsqIfCa9CUIpNArGMIf+iJopDHTz BxVtnMd/8wXWJyTeUJY0PlZikSljJM7ADBh7jqfQ/fc7vbo+QfK7s8skcaljGqxTQh/m efjvylUkqz6xNvrGk/t3uR7Vt/Q05e3n+O4djzUU8M2y2/Dj62yQ/p4YgJGXLhHcOH+U 7XNQEp3ccNSBwTv0Kzau+VjNXuEtYFSd9RA7+Hel1xxhwqNZ+eS+4ew3i/CAVGxy6zR/ XMhA4rFFrvhL2cVsKVQcM0CPylJY+QR4mqdaos+lW9NzhAPFoEbQvec29LMO4uNG+XK7 tSKw== X-Gm-Message-State: AOAM532GlPBObc0/CNmkQcA117T05HXhB7ltaN/1YDZ5fo1W9IJgC7Y+ UtC8zHNVlW2lcPR87wwVX9nVKQq/l3d3bQ== X-Google-Smtp-Source: ABdhPJwb0NJd1u9VY8D+JOINGMKYFCbUrPXsRxbpwHiZOhD6GKT8G4Ev/HxHPMpA4rmlhV+2EXPp3w== X-Received: by 2002:ac8:6e8b:: with SMTP id c11mr11428952qtv.314.1608431332987; Sat, 19 Dec 2020 18:28:52 -0800 (PST) Received: from localhost ([208.104.103.123]) by smtp.gmail.com with ESMTPSA id v196sm3208907qkb.84.2020.12.19.18.28.51 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 19 Dec 2020 18:28:52 -0800 (PST) From: Matt Turner To: gentoo-catalyst@lists.gentoo.org Cc: Matt Turner Subject: [gentoo-catalyst] [PATCH 1/7] catalyst: Set stage_path = chroot_path + root_path Date: Sat, 19 Dec 2020 21:28:42 -0500 Message-Id: <20201220022848.249207-1-mattst88@gentoo.org> X-Mailer: git-send-email 2.26.2 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: f22ef7e1-4f8a-4578-8dc1-6acaef3b788d X-Archives-Hash: 615b1a425cbb411e4f20ff49aa40df47 Signed-off-by: Matt Turner --- 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 -- 2.26.2