summaryrefslogtreecommitdiffstats
path: root/bin/isolated-functions.sh
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-12-29 20:14:05 +0000
committerZac Medico <zmedico@gentoo.org>2007-12-29 20:14:05 +0000
commit4ae7f766207f539d04b5293daab8e1a251831eb3 (patch)
tree968580810eb917869e9cd0a53946d14e80d249f6 /bin/isolated-functions.sh
parent69b4c507a0cb0059c4ff5da81c4bb49cde27131e (diff)
downloadportage-4ae7f766207f539d04b5293daab8e1a251831eb3.tar.gz
portage-4ae7f766207f539d04b5293daab8e1a251831eb3.tar.bz2
portage-4ae7f766207f539d04b5293daab8e1a251831eb3.zip
As suggested by grobian, treat Darwin just like USERLAND=gnu
since they seem to be switching commands to gnu anyway. svn path=/main/trunk/; revision=9118
Diffstat (limited to 'bin/isolated-functions.sh')
-rwxr-xr-xbin/isolated-functions.sh5
1 files changed, 1 insertions, 4 deletions
diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh
index 6be994db0..d7218b92f 100755
--- a/bin/isolated-functions.sh
+++ b/bin/isolated-functions.sh
@@ -380,9 +380,6 @@ if [[ -z ${USERLAND} ]] ; then
*BSD|DragonFly)
export USERLAND="BSD"
;;
- Darwin)
- export USERLAND="Darwin"
- ;;
*)
export USERLAND="GNU"
;;
@@ -391,7 +388,7 @@ fi
if [[ -z ${XARGS} ]] ; then
case ${USERLAND} in
- BSD|Darwin)
+ BSD)
export XARGS="xargs"
;;
*)