diff options
author | Piotr Strzelczyk <piotr@eps.gda.pl> | 2009-08-22 14:11:46 +0000 |
---|---|---|
committer | Piotr Strzelczyk <piotr@eps.gda.pl> | 2009-08-22 14:11:46 +0000 |
commit | 92897b92887926a64e837672f5925247b8fc802a (patch) | |
tree | 970cdf82aee757339b041690f626e0735f1063eb /Build/source/texk/tetex/updmap.pl | |
parent | 9b306a33b5b9e9d35cdb11836f8429703475b85d (diff) |
remove unneeded COMSPEC from backticks
git-svn-id: svn://tug.org/texlive/trunk@14815 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/tetex/updmap.pl')
-rw-r--r-- | Build/source/texk/tetex/updmap.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/tetex/updmap.pl b/Build/source/texk/tetex/updmap.pl index 9f79894f03c..fd787415b21 100644 --- a/Build/source/texk/tetex/updmap.pl +++ b/Build/source/texk/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`; } |