Craig A. Berry [Sun, 16 Aug 2009 23:43:35 +0000 (18:43 -0500)]
The home-grown glob() only does basic wildcarding, not patterns of
the form foo.{pm,t}, of which there are quite a few in Maintainers.pl.
use warnings;
use Maintainers qw(show_results process_options finish_tap_output);
+if ($^O eq 'VMS') {
+ print "1..0 # Skip: home-grown glob doesn't handle fancy patterns\n";
+ exit 0;
+}
{
local @ARGV = qw|--tap-output --checkmani|;