summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-12-29 11:30:30 +0000
committerZac Medico <zmedico@gentoo.org>2007-12-29 11:30:30 +0000
commit0c193126a01dd39e1806fe5cc376e75857d2f22e (patch)
tree0e513824259c9f0e1ccef2cc4db1e88d8d6d8053
parentAdd support for showing binary package file sizes in emerge (diff)
downloadportage-multirepo-0c193126a01dd39e1806fe5cc376e75857d2f22e.tar.gz
portage-multirepo-0c193126a01dd39e1806fe5cc376e75857d2f22e.tar.bz2
portage-multirepo-0c193126a01dd39e1806fe5cc376e75857d2f22e.zip
Move XARGS initialization from portage.data to isolated-functions.sh.
svn path=/main/trunk/; revision=9096
-rwxr-xr-xbin/isolated-functions.sh11
-rw-r--r--pym/portage/data.py3
2 files changed, 11 insertions, 3 deletions
diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh
index e06fbb82..3290654a 100755
--- a/bin/isolated-functions.sh
+++ b/bin/isolated-functions.sh
@@ -375,6 +375,17 @@ case "${NOCOLOR:-false}" in
;;
esac
+if [[ -z ${XARGS} ]] ; then
+ case ${USERLAND} in
+ BSD|Darwin)
+ export XARGS="xargs"
+ ;;
+ *)
+ export XARGS="xargs -r"
+ ;;
+ esac
+fi
+
has() {
hasq "$@"
}
diff --git a/pym/portage/data.py b/pym/portage/data.py
index dc72d6fa..d50a6752 100644
--- a/pym/portage/data.py
+++ b/pym/portage/data.py
@@ -18,15 +18,12 @@ if ostype == "Linux" or \
ostype.lower().startswith("gnu") or \
ostype.lower().endswith("gnu"):
userland="GNU"
- os.environ["XARGS"]="xargs -r"
elif ostype == "Darwin":
userland="Darwin"
- os.environ["XARGS"]="xargs"
def lchown(*pos_args, **key_args):
pass
elif ostype.endswith("BSD") or ostype =="DragonFly":
userland="BSD"
- os.environ["XARGS"]="xargs"
if not lchown:
if "lchown" in dir(os):