summaryrefslogtreecommitdiff
path: root/Master/bin/win32/updmap-sys.pl
diff options
context:
space:
mode:
Diffstat (limited to 'Master/bin/win32/updmap-sys.pl')
-rwxr-xr-xMaster/bin/win32/updmap-sys.pl21
1 files changed, 0 insertions, 21 deletions
diff --git a/Master/bin/win32/updmap-sys.pl b/Master/bin/win32/updmap-sys.pl
deleted file mode 100755
index f81e2afa315..00000000000
--- a/Master/bin/win32/updmap-sys.pl
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env perl
-
-# updmap-sys: wrapper script for updmap with TEXMFVAR and
-# TEXMFCONFIG set to TEXMFSYSVAR / TEXMFSYSCONFIG
-
-# Copyright 2007 Reinhard Kotucha
-# This file is licensed under the GNU General Public License version 2
-# or any later version.
-
-# Originally provided as a shell script written by Thomas Esser.
-$^W=1;
-
-my $TEXMFSYSVAR=`kpsewhich -var-value TEXMFSYSVAR`;
-chomp ($TEXMFSYSVAR);
-$ENV{"$TEXMFVAR"}="$TEXMFSYSVAR";
-
-my $TEXMFSYSCONFIG=`kpsewhich -var-value TEXMFSYSVAR`;
-chomp ($TEXMFSYSCONFIG);
-$ENV{"$TEXMFCONFIG"}="$TEXMFSYSCONFIG";
-
-exec ('updmap', @ARGV);