diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-06-12 22:05:40 +0000 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-06-12 22:05:40 +0000 |
commit | 661f54b31aca542d04e9e4e6db8b5960ae071d5f (patch) | |
tree | 4840053c2521a90dd05a711b59af38024fe2ab21 | |
parent | 574cf8cc365c5bf4c4e21a5f1f6548464a6fc87a (diff) |
Don't open a console for childs on win32.
git-svn-id: svn://tug.org/texlive/trunk@18916 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/texmf/scripts/tetex/texdoctk.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Master/texmf/scripts/tetex/texdoctk.pl b/Master/texmf/scripts/tetex/texdoctk.pl index 7d0b2c8c292..36497183e3b 100755 --- a/Master/texmf/scripts/tetex/texdoctk.pl +++ b/Master/texmf/scripts/tetex/texdoctk.pl @@ -14,6 +14,10 @@ use Getopt::Long; Getopt::Long::config('bundling'); use File::Basename; +BEGIN { + Win32::SetChildShowWindow(0) if defined &Win32::SetChildShowWindow; +} + my $IsWin32 = ($^O =~ /MSWin32/i); if ($IsWin32) { |