aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-12-29 19:36:57 +0000
committerZac Medico <zmedico@gentoo.org>2007-12-29 19:36:57 +0000
commit6336ea3ccaf12f14384f8d4d04602ec088ef7bf1 (patch)
tree4269d35533b27dca58653d50d413c5af612726a3 /pym/portage/data.py
parentAdd PKGDIR to the config.environ() whitelist so that people's (diff)
downloadportage-6336ea3ccaf12f14384f8d4d04602ec088ef7bf1.tar.gz
portage-6336ea3ccaf12f14384f8d4d04602ec088ef7bf1.tar.bz2
portage-6336ea3ccaf12f14384f8d4d04602ec088ef7bf1.zip
Fix broken Darwin USERLAND detection.
svn path=/main/trunk/; revision=9116
Diffstat (limited to 'pym/portage/data.py')
-rw-r--r--pym/portage/data.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/pym/portage/data.py b/pym/portage/data.py
index 5fc811e43..26bff27e6 100644
--- a/pym/portage/data.py
+++ b/pym/portage/data.py
@@ -13,13 +13,15 @@ ostype=os.uname()[0]
userland = None
if ostype == "DragonFly" or ostype.endswith("BSD"):
userland = "BSD"
+elif ostype == "Darwin":
+ userland = "Darwin"
else:
userland = "GNU"
lchown = getattr(os, "lchown", None)
if not lchown:
- if ostype == "Darwin":
+ if userland == "Darwin":
def lchown(*pos_args, **key_args):
pass
else: