summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 1d31065fe..0e30cc939 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -1244,6 +1244,9 @@ class config:
def _init_dirs(self):
"""Create tmp, var/tmp and var/lib/portage (relative to $ROOT)."""
+ if not os.access(self["ROOT"], os.W_OK):
+ return
+
dir_mode_map = {
"tmp" :(-1, 01777, 0),
"var/tmp" :(-1, 01777, 0),