summaryrefslogtreecommitdiff
path: root/config/PostSession.in
diff options
context:
space:
mode:
Diffstat (limited to 'config/PostSession.in')
-rwxr-xr-xconfig/PostSession.in22
1 files changed, 0 insertions, 22 deletions
diff --git a/config/PostSession.in b/config/PostSession.in
deleted file mode 100755
index bf510b02..00000000
--- a/config/PostSession.in
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-
-PATH="@X_PATH@:$PATH:/bin:/usr/bin"
-OLD_IFS=$IFS
-
-gdmwhich () {
- COMMAND="$1"
- OUTPUT=
- IFS=:
- for dir in $PATH
- do
- if test -x "$dir/$COMMAND" ; then
- if test "x$OUTPUT" = "x" ; then
- OUTPUT="$dir/$COMMAND"
- fi
- fi
- done
- IFS=$OLD_IFS
- echo "$OUTPUT"
-}
-
-exit 0