commit: 773ba1701f94bdd46086d294efcf97985b67841d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 28 11:23:16 2021 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Sep 28 11:23:16 2021 +0000
URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=773ba170
Attempt to fix creating FILESDIR properly
Since we perform a mode fixup on FILESDIR anyway, just let copytree()
create it. This should finally fix all the problems: have the directory
created without errors and work with Python < 3.8.
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
lib/portage/package/ebuild/prepare_build_dirs.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/lib/portage/package/ebuild/prepare_build_dirs.py
b/lib/portage/package/ebuild/prepare_build_dirs.py
index 0ae93a1d5..41de1a3a9 100644
--- a/lib/portage/package/ebuild/prepare_build_dirs.py
+++ b/lib/portage/package/ebuild/prepare_build_dirs.py
@@ -480,7 +480,6 @@ def _ensure_log_subdirs(logdir, subdir):
def _prepare_fake_filesdir(settings):
real_filesdir = settings["O"] + "/files"
filesdir = settings["FILESDIR"]
- portage.util.ensure_dirs(filesdir, mode=0o755)
# Copy files from real directory to ebuild directory (without metadata).
if os.path.isdir(real_filesdir):