summaryrefslogtreecommitdiffstats
path: root/contrib/bind/port/systype
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/bind/port/systype')
-rwxr-xr-xcontrib/bind/port/systype31
1 files changed, 0 insertions, 31 deletions
diff --git a/contrib/bind/port/systype b/contrib/bind/port/systype
deleted file mode 100755
index b022651..0000000
--- a/contrib/bind/port/systype
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-
-cachefile=${1-//}
-
-if [ -f $cachefile ]; then
- echo "Using $cachefile" >&2
- exec cat $cachefile
-fi
-
-case $cachefile in
-/*) ;;
-*) cachefile=`pwd`/$cachefile ;;
-esac
-
-cd `dirname $0`
-for systype in [a-z]*; do
- if [ -f $systype/probe ]; then
- if sh $systype/probe; then
- case $cachefile in
- //) ;;
- *) echo "Making $cachefile" >&2
- echo $systype > $cachefile
- ;;
- esac
- exec echo $systype
- fi
- fi
-done
-
-echo unknown
-exit 0
OpenPOWER on IntegriCloud