Update of /cvsroot/module-build/Module-Build/t
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2801/t
Modified Files:
destinations.t
Log Message:
prefix_relpaths returns arrays, not paths.
Index: destinations.t
===================================================================
RCS file: /cvsroot/module-build/Module-Build/t/destinations.t,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- destinations.t 23 Jun 2005 00:27:44 -0000 1.17
+++ destinations.t 23 Jun 2005 02:49:44 -0000 1.18
@@ -131,7 +131,7 @@
foreach my $type (keys %$defaults) {
my $prefix = shift @prefixes || [qw(foo bar)];
$test_config{$type} = catdir(File::Spec->rootdir, @$prefix,
- $defaults->{$type});
+ @{$defaults->{$type}});
}
# Poke at the innards of MB to change the default install locations.
|