Update of /cvsroot/module-build/Module-Build/lib/Module/Build
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4722/lib/Module/Build
Modified Files:
Base.pm
Log Message:
The string parameters that should be de-tilde-ified are prefix,
install_base, and destdir, not prefix, install_base, install_dest
(whatever that is) and install_path.
We *should* handle install_path too, but it's not a string parameter,
it's a hash.
Also, in the tests we can't guarantee that the home directory will be
at the very start of the installation path.
Index: Base.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Base.pm,v
retrieving revision 1.439
retrieving revision 1.440
diff -u -d -r1.439 -r1.440
--- Base.pm 23 Jun 2005 01:46:19 -0000 1.439
+++ Base.pm 23 Jun 2005 01:54:55 -0000 1.440
@@ -1259,7 +1259,7 @@
}
# De-tilde-ify any path parameters
- for my $key (qw(prefix install_base install_path install_dest)) {
+ for my $key (qw(prefix install_base destdir)) {
next if !defined $args{$key};
($args{$key}) = glob($args{$key}) if $args{$key} =~ /^~/;
}
|