diff options
author | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-03-31 18:54:12 +0000 |
---|---|---|
committer | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-03-31 18:54:12 +0000 |
commit | 25bd77d8777ef8d861be4a7afa82321d61d39c65 (patch) | |
tree | 4e2cbbf33fd80e0c640b491e5f084052e413456c /Master | |
parent | bb538fd49123074e9d4f625e4689a919d2682bc6 (diff) |
tetex/updmap.pl: Add /b and /s options to dir command (suppress header).
git-svn-id: svn://tug.org/texlive/trunk@7264 c570f23f-e606-0410-a88d-b1316a301751
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 304d83956ba..bf9b72b7f7d 100644 --- a/Master/texmf/scripts/tetex/updmap.pl +++ b/Master/texmf/scripts/tetex/updmap.pl @@ -1104,7 +1104,7 @@ updmap is creating new map files using the following configuration:\ "$dvipsoutputdir/ps2pk.map") { if ($^O=~/^MSWin(32|64)$/) { $f =~ s@/@\\@g; $f = "\"$f\"" if ($f =~ m/\s/); - @lines = `dir $f`; + @lines = `dir /b /s $f`; # rk. Suppress header and footer from dir output. } else { @lines = `ls -l $f`; } |