summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMaster/install-tl5
1 files changed, 4 insertions, 1 deletions
diff --git a/Master/install-tl b/Master/install-tl
index 0526a5ac3a3..235a7a3a620 100755
--- a/Master/install-tl
+++ b/Master/install-tl
@@ -166,7 +166,10 @@ GetOptions("media=s" => \$opt_media,
"help|?" => \$opt_help) or pod2usage(1);
if (win32()) {
- pod2usage(-exitstatus => 0, -verbose => 2, -noperldoc => 1) if $opt_help;
+ pod2usage(-exitstatus => 0,
+ -verbose => 2,
+ -noperldoc => 1,
+ -output => \*STDOUT) if $opt_help;
} else {
pod2usage(-exitstatus => 0, -verbose => 2) if $opt_help;
}