summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-editors/fte/files/fte')
-rw-r--r--app-editors/fte/files/fte26
1 files changed, 0 insertions, 26 deletions
diff --git a/app-editors/fte/files/fte b/app-editors/fte/files/fte
deleted file mode 100644
index 2e4621b92a62..000000000000
--- a/app-editors/fte/files/fte
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-#
-# simple wrapper shell script which selects appropriate fte executable
-#
-
-if [ -n "$DISPLAY" ]; then
- if which xfte >/dev/null; then
- exec xfte "$@"
- elif which sfte >/dev/null; then
- exec sfte "$@"
- elif which vfte >/dev/null; then
- echo "Only Console version installed!"
- fi
-else
- if [ "$TERM" = linux ] && which vfte >/dev/null; then
- exec vfte "$@"
- elif which sfte >/dev/null; then
- exec sfte "$@"
- elif which xfte >/dev/null; then
- echo "Only X-Window version installed!"
- fi
-
-fi
-
-echo "No binary executable from the FTE family has been found!"
-echo "Please install one of them."