Jean Chalard | ddcb484 | 2012-05-28 17:30:18 +0900 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # Copyright 2011, The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | # Set up prog to be the path of this script, including following symlinks, |
| 17 | # and set up progdir to be the fully-qualified pathname of its directory. |
| 18 | prog="$0" |
| 19 | while [ -h "${prog}" ]; do |
| 20 | newProg=`/bin/ls -ld "${prog}"` |
| 21 | newProg=`expr "${newProg}" : ".* -> \(.*\)$"` |
| 22 | if expr "x${newProg}" : 'x/' >/dev/null; then |
| 23 | prog="${newProg}" |
| 24 | else |
| 25 | progdir=`dirname "${prog}"` |
| 26 | prog="${progdir}/${newProg}" |
| 27 | fi |
| 28 | done |
| 29 | oldwd=`pwd` |
| 30 | progdir=`dirname "${prog}"` |
| 31 | cd "${progdir}" |
| 32 | progdir=`pwd` |
| 33 | prog="${progdir}"/`basename "${prog}"` |
| 34 | cd "${oldwd}" |
| 35 | |
Jean Chalard | 4c573f3 | 2012-08-08 17:15:58 +0900 | [diff] [blame^] | 36 | jarfile=dicttool_aosp.jar |
Jean Chalard | ddcb484 | 2012-05-28 17:30:18 +0900 | [diff] [blame] | 37 | frameworkdir="$progdir" |
| 38 | if [ ! -r "$frameworkdir/$jarfile" ] |
| 39 | then |
| 40 | frameworkdir=`dirname "$progdir"`/tools/lib |
| 41 | libdir=`dirname "$progdir"`/tools/lib |
| 42 | fi |
| 43 | if [ ! -r "$frameworkdir/$jarfile" ] |
| 44 | then |
| 45 | frameworkdir=`dirname "$progdir"`/framework |
| 46 | libdir=`dirname "$progdir"`/lib |
| 47 | fi |
| 48 | if [ ! -r "$frameworkdir/$jarfile" ] |
| 49 | then |
| 50 | echo `basename "$prog"`": can't find $jarfile" |
| 51 | exit 1 |
| 52 | fi |
| 53 | |
| 54 | if [ "$OSTYPE" = "cygwin" ] ; then |
| 55 | jarpath=`cygpath -w "$frameworkdir/$jarfile"` |
| 56 | progdir=`cygpath -w "$progdir"` |
| 57 | else |
| 58 | jarpath="$frameworkdir/$jarfile" |
| 59 | fi |
| 60 | |
| 61 | # might need more memory, e.g. -Xmx128M |
| 62 | exec java -ea -jar "$jarpath" "$@" |