Compatible Android

This commit is contained in:
Andros Fenollosa
2016-11-03 00:05:36 +01:00
parent 7cb6af1390
commit 8ec8327e5e
1793 changed files with 440698 additions and 7 deletions

View File

@ -0,0 +1,21 @@
#!/bin/sh
#Resolve the full path to this script
RELDIR=$(dirname "$0")
pushd "$RELDIR" > /dev/null
JDKBINDIR=`pwd -P`
popd > /dev/null
RELDIR="$JDKBINDIR/../lib/missioncontrol/Java Mission Control.app/Contents/MacOS"
pushd "$RELDIR" > /dev/null
JMCAPPDIR=`pwd -P`
popd > /dev/null
# Escaping whitespace
JMCAPPDIR=$(echo $JMCAPPDIR | sed 's/ /\\ /g')
CMD="$JMCAPPDIR/jmc $*"
#echo $CMD
eval $CMD
exit