summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2007-10-17 19:00:45 +0000
committerKarl Berry <karl@freefriends.org>2007-10-17 19:00:45 +0000
commit071b5fa1a1a3275206ad6d0ea9f646da750fcfcf (patch)
treea3f797ba8c92b811592141648d5b533c88fb14ff /Master
parentcb091d9b79eb9d6cce2c94c8c0112ed30aa4b64a (diff)
new --all obviates the need for tlpdb-update
git-svn-id: svn://tug.org/texlive/trunk@5220 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-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