aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Dolbec <dolsen@gentoo.org>2016-03-16 21:51:58 -0700
committerBrian Dolbec <dolsen@gentoo.org>2016-03-16 22:03:09 -0700
commita92e16b6f5be895cc62d9eee404efa78b4e14c59 (patch)
tree0e19893a71c611b9707aeecd4e93b93074b6bc5a
parentcatalyst/base/stagebase.py: Fix commit 7536857c1a seedcache handling (diff)
downloadcatalyst-a92e16b6f5be895cc62d9eee404efa78b4e14c59.tar.gz
catalyst-a92e16b6f5be895cc62d9eee404efa78b4e14c59.tar.bz2
catalyst-a92e16b6f5be895cc62d9eee404efa78b4e14c59.zip
stagebase.py: Fix missed hard coded overlay path
Credit goes to: Colton McInroy <nam@thelinuxplace.com> For testing overlay relocation from the original path and finding it.
-rw-r--r--catalyst/base/stagebase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index 98e04771..8d326ea8 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(