summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-01-19 03:49:52 +0000
committerDavid Robillard <d@drobilla.net>2008-01-19 03:49:52 +0000
commit4ca1fe7993adf63ea3f35958f63dd20ee546e7ae (patch)
treef773e6cf00e08a8260c2e2b28b8e16e28b39b887 /tools
parentf80fad313a21228f31201279cccaf555796c7eec (diff)
Merge with trunk R2935.
git-svn-id: svn://localhost/ardour2/branches/3.0@2943 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/osx_packaging/script27
1 files changed, 16 insertions, 11 deletions
diff --git a/tools/osx_packaging/script b/tools/osx_packaging/script
index faf92eded8..b003337418 100755
--- a/tools/osx_packaging/script
+++ b/tools/osx_packaging/script
@@ -32,17 +32,22 @@ if [ "$?" != "0" -a ! -f ~/.xinitrc ]; then
sed 's/xterm/# xterm/' /usr/X11R6/lib/X11/xinit/xinitrc >> ~/.xinitrc
fi
-mkdir -p $TMP
-cp -f "$CWD/bin/getdisplay.sh" $TMP
-rm -f $TMP/display
-open-x11 $TMP/getdisplay.sh || \
-open -a XDarwin $TMP/getdisplay.sh || \
-echo ":0" > $TMP/display
-
-while [ "$?" == "0" -a ! -f $TMP/display ]; do sleep 1; done
-export "DISPLAY=`cat $TMP/display`"
-
-ps -wx -ocommand | grep -e '[X]11' > /dev/null || exit 11
+if uname -r | grep -sq '^9' ; then
+ # leopard will auto-start X11 for us
+ :
+else
+ mkdir -p $TMP
+ cp -f "$CWD/bin/getdisplay.sh" $TMP
+ rm -f $TMP/display
+ open-x11 $TMP/getdisplay.sh || \
+ open -a XDarwin $TMP/getdisplay.sh || \
+ echo ":0" > $TMP/display
+
+ while [ "$?" == "0" -a ! -f $TMP/display ]; do sleep 1; done
+ export "DISPLAY=`cat $TMP/display`"
+
+ ps -wx -ocommand | grep -e '[X]11' > /dev/null || exit 11
+fi
cd ~/
shift