commit:     a92e16b6f5be895cc62d9eee404efa78b4e14c59
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 17 04:51:58 2016 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> 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 <nam <AT> 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(

Reply via email to