diff options
-rw-r--r-- | pym/portage_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage_data.py b/pym/portage_data.py index 43d4f6b2a..00148f907 100644 --- a/pym/portage_data.py +++ b/pym/portage_data.py @@ -19,7 +19,7 @@ elif ostype == "Darwin": os.environ["XARGS"]="xargs" def lchown(*pos_args, **key_args): pass -elif ostype in ["FreeBSD","OpenBSD","NetBSD","DragonFly"]: +elif ostype.endswith("BSD") or ostype =="DragonFly": userland="BSD" os.environ["XARGS"]="xargs" else: |