summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorPiotr Strzelczyk <piotr@eps.gda.pl>2009-08-22 14:11:46 +0000
committerPiotr Strzelczyk <piotr@eps.gda.pl>2009-08-22 14:11:46 +0000
commit92897b92887926a64e837672f5925247b8fc802a (patch)
tree970cdf82aee757339b041690f626e0735f1063eb /Master
parent9b306a33b5b9e9d35cdb11836f8429703475b85d (diff)
remove unneeded COMSPEC from backticks
git-svn-id: svn://tug.org/texlive/trunk@14815 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/texmf/scripts/tetex/updmap.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf/scripts/tetex/updmap.pl b/Master/texmf/scripts/tetex/updmap.pl
index 9f79894f03c..fd787415b21 100644
--- a/Master/texmf/scripts/tetex/updmap.pl
+++ b/Master/texmf/scripts/tetex/updmap.pl
@@ -1105,7 +1105,7 @@ updmap is creating new map files using the following configuration:\
if ($^O=~/^MSWin(32|64)$/) {
$f =~ s@/@\\@g; $f = "\"$f\"" if ($f =~ m/\s/);
# rk. Suppress header and footer from dir output.
- @lines = `\"$ENV{'COMSPEC'}\" /c dir /b /s $f`;
+ @lines = `dir /b /s $f`;
} else {
@lines = `ls -l $f`;
}