- From: Ville Skytta via cvs-syncmail <cvsmail@w3.org>
- Date: Sun, 26 Oct 2008 18:24:55 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/perl/modules/W3C/LinkChecker/bin
In directory hutz:/tmp/cvs-serv13328
Modified Files:
checklink
Log Message:
Fix --exclude-docs for older Getopt::Long versions thanks to Michael Ernst for pointing it out.
Index: checklink
===================================================================
RCS file: /sources/public/perl/modules/W3C/LinkChecker/bin/checklink,v
retrieving revision 4.123
retrieving revision 4.124
diff -u -d -r4.123 -r4.124
--- checklink 25 Oct 2008 19:57:45 -0000 4.123
+++ checklink 26 Oct 2008 18:24:53 -0000 4.124
@@ -617,7 +617,7 @@
if $Opts{Depth} == 0; },
'l|location=s' => \@locs,
'X|exclude=s' => \$Opts{Exclude},
- 'exclude-docs=s@' => \$Opts{Exclude_Docs},
+ 'exclude-docs=s@' => \@{$Opts{Exclude_Docs}},
'u|user=s' => \$Opts{User},
'p|password=s' => \$Opts{Password},
't|timeout=i' => \$Opts{Timeout},
Received on Sunday, 26 October 2008 18:25:05 UTC