From: Zac Medico Date: Wed, 6 Jun 2007 06:02:58 +0000 (-0000) Subject: For bug #82378, only set permissions on PORT_LOGDIR if it is created automatically... X-Git-Tag: v2.1.2.10~19 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=170795b32a1eb830e519472dc4cca4cc0101865f;p=portage.git For bug #82378, only set permissions on PORT_LOGDIR if it is created automatically. (trunk r6743) svn path=/main/branches/2.1.2/; revision=6744 --- diff --git a/pym/portage.py b/pym/portage.py index 8cc167dbf..8e8f87b7a 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -3262,8 +3262,10 @@ def prepare_build_dirs(myroot, mysettings, cleanup): del mysettings["PORT_LOGDIR"] if "PORT_LOGDIR" in mysettings: try: - portage_util.ensure_dirs(mysettings["PORT_LOGDIR"], - uid=portage_uid, gid=portage_gid, mode=02770) + modified = portage_util.ensure_dirs(mysettings["PORT_LOGDIR"]) + if modified: + apply_secpass_permissions(mysettings["PORT_LOGDIR"], + uid=portage_uid, gid=portage_gid, mode=02770) except portage_exception.PortageException, e: writemsg("!!! %s\n" % str(e), noiselevel=-1) writemsg("!!! Permission issues with PORT_LOGDIR='%s'\n" % \