From 338f096861136fb6c4f604e93ff21277252676b7 Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Date: Sun, 28 Dec 2008 01:53:38 -0800 Subject: XQuartz: Try harder to get the user's login environment (cherry picked from commit 6bedaddd78aa04bd303df434a4c49bb87bd7deaa) --- hw/xquartz/bundle/X11.sh | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/hw/xquartz/bundle/X11.sh b/hw/xquartz/bundle/X11.sh index 4295da9b7..3b8b6799c 100755 --- a/hw/xquartz/bundle/X11.sh +++ b/hw/xquartz/bundle/X11.sh @@ -1,8 +1,15 @@ -#!/bin/bash --login +#!/bin/bash + +set "$(dirname "$0")"/X11.bin "${@}" if [ -x ~/.x11run ]; then - exec ~/.x11run "$(dirname "$0")"/X11.bin "${@}" -else - exec "$(dirname "$0")"/X11.bin "${@}" + exec ~/.x11run "${@}" fi +case $(basename "${SHELL}") in + bash) exec -l "${SHELL}" --login -c 'exec "${@}"' - "${@}" ;; + ksh|sh|zsh) exec -l "${SHELL}" -c 'exec "${@}"' - "${@}" ;; + csh|tcsh) exec -l "${SHELL}" -c 'exec $argv:q' "${@}" ;; + es|rc) exec -l "${SHELL}" -l -c 'exec $*' "${@}" ;; + *) exec "${@}" ;; +esac -- cgit v1.2.3