summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMaster/tlpkg/bin/tlpdb-update26
1 files changed, 0 insertions, 26 deletions
diff --git a/Master/tlpkg/bin/tlpdb-update b/Master/tlpkg/bin/tlpdb-update
deleted file mode 100755
index 4950237b4ac..00000000000
--- a/Master/tlpkg/bin/tlpdb-update
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-# $Id$
-# Copyright 2007 Norbert Preining
-# This file is licensed under the GNU General Public License version 2
-# or any later version.
-#
-# Make new database by calling the tlpsrc -> tlpdb script on all
-# the tlpsrc files.
-
-unset CDPATH
-cd `dirname $0`/../.. || exit 1
-
-if test "x$1" = x-n; then
- chicken=true
- shift
-else
- chicken=false
-fi
-
-perl tlpkg/bin/tlpsrc2tlpdb "$@" tlpkg/tlpsrc/*.tlpsrc >texlive.tlpdb.new
-if $chicken; then
- echo "$0: skipping update, see `pwd`/texlive.tlpdb.new."
-else
- mv texlive.tlpdb ${TMPDIR-/tmp}/texlive.tlpdb.saved
- mv texlive.tlpdb.new texlive.tlpdb
-fi