From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6C41E59CA3 for ; Thu, 17 Mar 2016 05:05:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5325EE0848; Thu, 17 Mar 2016 05:04:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EF673E0848 for ; Thu, 17 Mar 2016 05:04:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 772AD340D6B for ; Thu, 17 Mar 2016 05:04:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD562847 for ; Thu, 17 Mar 2016 05:04:53 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1458190989.a92e16b6f5be895cc62d9eee404efa78b4e14c59.dolsen@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: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: a92e16b6f5be895cc62d9eee404efa78b4e14c59 X-VCS-Branch: master Date: Thu, 17 Mar 2016 05:04:53 +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-Archives-Salt: 2d7fd58a-4a23-4e59-bde5-53c2d5f80d22 X-Archives-Hash: a0120291dd5a701a8e175b5ae9869166 commit: a92e16b6f5be895cc62d9eee404efa78b4e14c59 Author: Brian Dolbec gentoo org> AuthorDate: Thu Mar 17 04:51:58 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Thu Mar 17 05:03:09 2016 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=a92e16b6 stagebase.py: Fix missed hard coded overlay path Credit goes to: Colton McInroy thelinuxplace.com> For testing overlay relocation from the original path and finding it. catalyst/base/stagebase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 98e0477..8d326ea 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -1130,7 +1130,7 @@ class StageBase(TargetBase, ClearBase, GenBase): # Setup the portage overlay if "portage_overlay" in self.settings: - myf.write('PORTDIR_OVERLAY="/usr/local/portage"\n') + myf.write('PORTDIR_OVERLAY="%s"\n' % self.settings["local_overlay"]) # Set default locale for system responses. #478382 myf.write(