summaryrefslogtreecommitdiff
path: root/src/gfc.in
blob: bd08db0b863e0eb0a6eb570543d30fa88289d911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh

prefix="@prefix@"

case "@host@" in
      *-cygwin)
          prefix=`cygpath -w "$prefix"`;;
esac

exec_prefix="@exec_prefix@"
GF_BIN_DIR="@bindir@"
GF_DATA_DIR="@datadir@/GF-@PACKAGE_VERSION@"

GFBIN="$GF_BIN_DIR/gf"

if [ ! -x "${GFBIN}" ]; then
   GF_BIN_DIR=`dirname $0`
   GFBIN="$GF_BIN_DIR/gf"
fi

if [ ! -x "${GFBIN}" ]; then
   GFBIN=`which gf`
fi

if [ ! -x "${GFBIN}" ]; then
    echo "gf not found."
    exit 1
fi

exec $GFBIN --batch "$@"