summaryrefslogtreecommitdiff
path: root/src/gfc.in
blob: 9edd00ff06a3a5862f784ef1c2fb574d4c7ca108 (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
#!/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
   GFBIN=`which gf`
fi

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

exec $GFBIN --batch "$@"