commit: 6356b5ab72a658635dd018c25b21ce998250f887
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 3 09:04:30 2024 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sat Aug 3 09:04:30 2024 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=6356b5ab
Add log.debug statements to follow profile symlink creation
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
catalyst/base/stagebase.py | 3 +++
1 file changed, 3 insertions(+)
diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index 82300e88..2975236e 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -888,11 +888,14 @@ class StageBase(TargetBase, ClearBase, GenBase):
# stage_path is chroot_path + root_path
root_port_conf = Path(self.settings['stage_path'] +
self.settings['port_conf'])
+ log.debug(' creating directory %s', root_port_conf)
root_port_conf.mkdir(mode=0o755, parents=True, exist_ok=True)
root_make_profile = root_port_conf / 'make.profile'
+ log.debug(' removing file %s', root_make_profile)
root_make_profile.unlink(missing_ok=True)
+ log.debug(' symlinking it to %s',
os.path.relpath(chroot_profile_path, root_port_conf))
root_make_profile.symlink_to(os.path.relpath(chroot_profile_path,
root_port_conf),
target_is_directory=True)