summaryrefslogtreecommitdiff
path: root/Build/tools/tpm-check
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2008-06-09 20:09:36 +0000
committerKarl Berry <karl@freefriends.org>2008-06-09 20:09:36 +0000
commit07b1dd24a6c6ca7ac335c56b3cc3127bd7910619 (patch)
tree0d2f468e7ca03a1fe7dec6ab32d70bc8312c9635 /Build/tools/tpm-check
parentd07573a8bcbd2864457642cb3a08aa940bc89565 (diff)
remove obsolete or replaced tpm-related scripts and support
git-svn-id: svn://tug.org/texlive/trunk@8622 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/tools/tpm-check')
-rwxr-xr-xBuild/tools/tpm-check36
1 files changed, 0 insertions, 36 deletions
diff --git a/Build/tools/tpm-check b/Build/tools/tpm-check
deleted file mode 100755
index 65bb9cf761d..00000000000
--- a/Build/tools/tpm-check
+++ /dev/null
@@ -1,36 +0,0 @@
-#!/bin/sh
-# $Id$
-# Public domain. Originally written 2004, Karl Berry.
-# Do TPM sanity checks.
-
-mydir=`dirname $0`
-tools=`cd $mydir && pwd`
-master=`cd $mydir/../../Master && pwd`
-
-# if get an XML syntax error, set to --debug to see which .tpm it comes from.
-verbose=${OVERRIDE_VERBOSE-}
-
-if test "x$1" = x--type; then
- shift
- type=$1
- shift
-else
- type=all
-fi
-
-test $# -eq 0 && set - dep cov
-
-for check in "$@"; do # around 1300 dup's, so don't bother with that one
- printf "\f\n"
- echo "$0: checking $check..."
- perl $tools/tpm-factory.pl $verbose \
- --master_dir=$master --ftp_dir=/tmp/ \
- --check=$check --arch=all --type=$type
-done
-
-# Without --clean, buildPatternsPackage (for example) doesn't get called.
-# Therefore, the debugging procedure is:
-# change code,
-# run update-tpm TLCore (or whatever; this does the --clean update),
-# run tpm-check cov (or whatever).
-# Painful.