summaryrefslogtreecommitdiff
path: root/Master/tlpkg/tlpostcode
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2011-06-04 12:16:15 +0000
committerTaco Hoekwater <taco@elvenkind.com>2011-06-04 12:16:15 +0000
commit48ddebafd9743602803a7dd645b3b71085e153bd (patch)
tree8821d713c179fb0dd4b7ae7f3233bcbe58144f9c /Master/tlpkg/tlpostcode
parenta81d5cc5602a99e035494e0160d81d081ae38209 (diff)
remove the postaction script for context again (Norbert will patch tlmgr and install-tl
to do context database refreshes) git-svn-id: svn://tug.org/texlive/trunk@22774 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/tlpostcode')
-rw-r--r--Master/tlpkg/tlpostcode/context.pl39
1 files changed, 0 insertions, 39 deletions
diff --git a/Master/tlpkg/tlpostcode/context.pl b/Master/tlpkg/tlpostcode/context.pl
deleted file mode 100644
index 0d290caf312..00000000000
--- a/Master/tlpkg/tlpostcode/context.pl
+++ /dev/null
@@ -1,39 +0,0 @@
-# $Id$
-# post action for context
-# Written in 2011 by Taco Hoekwater
-# public domain
-
-my $texdir;
-my $mode;
-
-BEGIN {
- $^W = 1;
- $mode = lc($ARGV[0]);
- $texdir = $ARGV[1];
-}
-
-if ($mode eq 'install') {
- do_install();
-} elsif ($mode eq 'remove') {
- do_remove();
-} else {
- die("unknown mode: $mode\n");
-}
-
-sub do_remove {
- # do nothing
-}
-
-sub do_install {
- # initialize filename database
- my $retval = `mtxrun --generate` ;
- # not necessary, but for completeness
- return $retval;
-}
-
-### Local Variables:
-### perl-indent-level: 2
-### tab-width: 2
-### indent-tabs-mode: nil
-### End:
-# vim:set tabstop=2 expandtab: #