annotate src/gftp.in @ 964:e0d9d935cab5
2008-11-29 Brian Masney <masneyb@gftp.org>
* configure.in - warning fixes for newer versions of gettext and
aclocal
author |
masneyb |
date |
Sat, 29 Nov 2008 14:03:16 +0000 |
parents |
0fcc6468a0af |
children |
|
rev |
line source |
1
|
1 #!/bin/sh
|
|
2
|
325
|
3 prefix=@prefix@
|
|
4 exec_prefix=@exec_prefix@
|
|
5
|
|
6 if [ "$DISPLAY " != " " ] && [ -f @bindir@/gftp-gtk ]; then
|
|
7 exec @bindir@/gftp-gtk ${1+"$@"}
|
|
8 elif [ -f @bindir@/gftp-text ]; then
|
|
9 exec @bindir@/gftp-text ${1+"$@"}
|
1
|
10 else
|
325
|
11 echo "Error: Can't find gFTP binaries installed in @bindir@"
|
1
|
12 fi
|
|
13
|