[Module-build-checkins] Module-Build/lib/Module/Build Base.pm,1.340.2.4,1.340.2.5
Status: Beta
Brought to you by:
kwilliams
From: Ken W. <kwi...@us...> - 2004-12-06 22:53:06
|
Update of /cvsroot/module-build/Module-Build/lib/Module/Build In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15746/lib/Module/Build Modified Files: Tag: release-0_26_branch Base.pm Log Message: Fix a bug in the new_from_context() method in which any arguments passed made us die Index: Base.pm =================================================================== RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v retrieving revision 1.340.2.4 retrieving revision 1.340.2.5 diff -C2 -d -r1.340.2.4 -r1.340.2.5 *** Base.pm 20 Nov 2004 04:29:14 -0000 1.340.2.4 --- Base.pm 6 Dec 2004 22:52:51 -0000 1.340.2.5 *************** *** 63,67 **** $package->run_perl_script('Build.PL'); my $self = $package->resume; ! $self->merge_args(%args); return $self; } --- 63,67 ---- $package->run_perl_script('Build.PL'); my $self = $package->resume; ! $self->merge_args(undef, %args); return $self; } |