removed more old libs
[TestXSLT.git] / libiconv / libcharset / tools / all-locales
diff --git a/libiconv/libcharset/tools/all-locales b/libiconv/libcharset/tools/all-locales
deleted file mode 100755 (executable)
index a6f38f1..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#! /bin/sh
-# Prints the list of all locale names, one per line.
-
-locale -a
-test $? = 0 && exit 0
-
-host=`/bin/sh ../autoconf/config.guess`
-host_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
-host_vendor=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
-host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
-
-case "$host_os" in
-  sunos* | solaris*)
-    cd /usr/lib/locale && ls -1
-    ;;
-  freebsd*)
-    cd /usr/share/locale && ls -1
-    ;;
-  *)
-    echo "Don't know how to determine list of locales on $host_os" 1>&2
-    exit 1
-    ;;
-esac