summaryrefslogtreecommitdiffstats
path: root/pym/portage_data.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage_data.py')
-rw-r--r--pym/portage_data.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/pym/portage_data.py b/pym/portage_data.py
index a0f055a80..2afd04667 100644
--- a/pym/portage_data.py
+++ b/pym/portage_data.py
@@ -16,8 +16,9 @@ if ostype=="Linux" or ostype.lower().endswith("gnu"):
os.environ["XARGS"]="xargs -r"
elif ostype == "Darwin":
userland="Darwin"
- os.environ["XARGS"]="xargs"
- lchown=os.chown
+ os.environ["XARGS"]="xargs"
+ def lchown(*pos_args, **key_args):
+ pass
elif ostype in ["FreeBSD","OpenBSD"]:
userland="BSD"
os.environ["XARGS"]="xargs"