summaryrefslogtreecommitdiff
path: root/packaging/macosx/Resources/openDoc
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/macosx/Resources/openDoc')
-rwxr-xr-xpackaging/macosx/Resources/openDoc18
1 files changed, 0 insertions, 18 deletions
diff --git a/packaging/macosx/Resources/openDoc b/packaging/macosx/Resources/openDoc
deleted file mode 100755
index 547889723b..0000000000
--- a/packaging/macosx/Resources/openDoc
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-#
-# Author: Aaron Voisine <aaron@voisine.org>
-# Inkscape Modifications: Michael Wybrow <mjwybrow@users.sourceforge.net>
-
-CWD="`dirname \"$0\"`"
-
-# System version: 3 for Panther, 4 for Tiger, 5 for Leopard
-export VERSION=`/usr/bin/sw_vers | grep ProductVersion | cut -f2 -d'.'`
-
-if [[ $VERSION -le 4 ]]; then
- export "DISPLAY=`cat /tmp/display.$UID`"
-fi
-
-BASE="`echo "$0" | sed -e 's/\/[A-Za-z]*.app\/Contents\/Resources\/openDoc/\//'`"
-cd "$BASE"
-exec "$CWD/bin/wireshark" "$@"
-