The get_options Argument to new()

[email protected] ("John M. Gamble") Fri, 16 Nov 2012 18:53:36 -0600
Newsgroups perl.module.build
Message-ID <[email protected]>
I managed to get around this using the args() method, so this isn't a
critical problem. But I was wondering if I used the get_options argument
incorrectly.

What I had was:

my $test_all = 0;

my $build = Module::Build->new(
my $build = $class->new(

	license => 'perl',

	get_options => {
		Testall => {store => \$test_all},
	},
#... etc.
);

$build->create_build_script;

It creates the Build file correctly, but when I try the command

Build test --Testall

I get the error message

Modification of a read-only value attempted at
C:/Perl64/lib/Getopt/Long.pm line 561.

Is this an error in Module::Build handling or an error on my part?

I'm using Activestate perl v5.14.1 built for MSWin32-x64-multi-thread, and
version 2.38 of Getopt-Long.

Thanks,
     -john