1#!/bin/sh
2
3# This definition is changed on install to match the
4# executable name set in the makefile
5GS_EXECUTABLE=gs
6gs="`dirname \"$0\"`/$GS_EXECUTABLE"
7if test ! -x "$gs"; then
8	gs="$GS_EXECUTABLE"
9fi
10GS_EXECUTABLE="$gs"
11
12exec "$GS_EXECUTABLE" -P- -dSAFER -dNODISPLAY "$@"
13