Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3284/lib/Module/Build
Modified Files:
Base.pm
Log Message:
Integrate from branch
Index: Base.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v
retrieving revision 1.397
retrieving revision 1.398
diff -u -d -r1.397 -r1.398
--- Base.pm 10 Mar 2005 05:03:14 -0000 1.397
+++ Base.pm 23 Mar 2005 01:30:53 -0000 1.398
@@ -1266,6 +1266,8 @@
$self->_read_arg(\%args, $1, $2);
} elsif ( /^--(\w+)$/ ) {
$self->_read_arg(\%args, $1, shift());
+ } elsif ( /^--(\w+)=(.*)$/ ) {
+ $self->_read_arg(\%args, $1, $2);
} elsif ( /^(\w+)$/ and !defined($action)) {
$action = $1;
} else {
|