diff options
author | 2007-04-26 20:44:29 +0000 | |
---|---|---|
committer | 2007-04-26 20:44:29 +0000 | |
commit | 1436c3ca4fe64b7ceada4688b4efea458ada15e1 (patch) | |
tree | 9f2b57739bb4a2f2a978e8b112d14c1a436cad1e | |
parent | For bug #176139, only symlink the distfiles that are required according the c... (diff) | |
download | portage-multirepo-1436c3ca4fe64b7ceada4688b4efea458ada15e1.tar.gz portage-multirepo-1436c3ca4fe64b7ceada4688b4efea458ada15e1.tar.bz2 portage-multirepo-1436c3ca4fe64b7ceada4688b4efea458ada15e1.zip |
Always ensure permissions in DISTCC_DIR in order to try to prevent potential permission problems for non-root users who are in the portage group (userpriv, etc.). (trunk r6439:6440)v2.1.2.5
svn path=/main/branches/2.1.2/; revision=6441
-rw-r--r-- | pym/portage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py index fda216be..92a2557b 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -3159,7 +3159,7 @@ def prepare_build_dirs(myroot, mysettings, cleanup): "basedir_var":"DISTCC_DIR", "default_dir":os.path.join(mysettings["BUILD_PREFIX"], ".distcc"), "subdirs":("lock", "state"), - "always_recurse":False} + "always_recurse":True} } dirmode = 02070 filemode = 060 |