diff options
Diffstat (limited to 'Master')
-rw-r--r-- | Master/texmf/scripts/tetex/updmap.pl | 2 |
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`; } |