diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-06-07 12:49:22 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-06-07 12:49:22 +0000 |
commit | 3f0e53dd05cb2a0727174d3ae0a33c439ffb23e1 (patch) | |
tree | db5a9856d171cf68126b9c1d7c6cb7233f650cae | |
parent | 58b56a401ebd833ce4418dffdf8167251355e843 (diff) | |
download | portage-3f0e53dd05cb2a0727174d3ae0a33c439ffb23e1.tar.gz portage-3f0e53dd05cb2a0727174d3ae0a33c439ffb23e1.tar.bz2 portage-3f0e53dd05cb2a0727174d3ae0a33c439ffb23e1.zip |
Call the bogus lchown() once so that the warning is seen asap.
svn path=/main/trunk/; revision=3467
-rw-r--r-- | pym/portage_data.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage_data.py b/pym/portage_data.py index bd556b519..1f2e67e57 100644 --- a/pym/portage_data.py +++ b/pym/portage_data.py @@ -38,6 +38,7 @@ if not lchown: def lchown(*pos_args, **key_args): writemsg(red("!!!") + " It seems that os.lchown does not" + \ " exist. Please rebuild python.\n", noiselevel=-1) + lchown() os.environ["USERLAND"]=userland |