summaryrefslogtreecommitdiffstats
path: root/pym/portage_data.py
diff options
context:
space:
mode:
authorJason Stubbs <jstubbs@gentoo.org>2005-09-01 14:42:25 +0000
committerJason Stubbs <jstubbs@gentoo.org>2005-09-01 14:42:25 +0000
commit1b1f845635a1542fc2b7fda43d8dc44e55a8fded (patch)
tree0fecbe5b910b08edf7837a6a2be02d7af7c85bc5 /pym/portage_data.py
parent7a70785bb2b18b7ae415aa0382b7f8c2adfcd2a4 (diff)
downloadportage-1b1f845635a1542fc2b7fda43d8dc44e55a8fded.tar.gz
portage-1b1f845635a1542fc2b7fda43d8dc44e55a8fded.tar.bz2
portage-1b1f845635a1542fc2b7fda43d8dc44e55a8fded.zip
68928-spawn-command-isabs-zmedico.patch (spawn included "." in PATH)
98727_sleep_locale_cleanup.patch (sleep was defined twice for "." and "," locales) 98827_lchown_normal_files.patch (lchown was being used on known-to-be-regular files) 98827_darwin_noop_lchown.patch (lchwon was aliased to chown on darwin) 99101_ccache_perms_adjust.patch (perms test and adjustment didn't match) 99120_uid_gid_mixup.patch (portage gid used in place of uid) 99418_merge_retcode_ignored.patch (dispatch-conf ignored result of merge command) 100382_incomplete_world.patch (versioned atoms were not being added to world) broken-stat-perms.patch (result of conditional execution being unconditionally tested) svn path=/main/branches/2.0/; revision=1960
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"