Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19706/lib/Module/Build
Modified Files:
Base.pm
Log Message:
Little clarity fix
Index: Base.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v
retrieving revision 1.498
retrieving revision 1.499
diff -u -d -r1.498 -r1.499
--- Base.pm 11 Oct 2005 01:49:06 -0000 1.498
+++ Base.pm 16 Oct 2005 00:21:19 -0000 1.499
@@ -1492,7 +1492,7 @@
sub _detildefy {
my $arg = shift;
- ($arg) = $arg =~ /^~/ ? glob($arg) : $arg;
+ ($arg) = glob($arg) if $arg =~ /^~/;
return $arg;
}
|