Update of /cvsroot/module-build/Module-Build/t
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8800/t
Modified Files:
destinations.t
Log Message:
Nail a couple unixisms.
Index: destinations.t
===================================================================
RCS file: /cvsroot/module-build/Module-Build/t/destinations.t,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- destinations.t 21 Jun 2005 23:16:19 -0000 1.15
+++ destinations.t 21 Jun 2005 23:26:42 -0000 1.16
@@ -140,7 +140,8 @@
$M->{properties}{install_sets}{site}{$key} = $path;
}
- $M->{config}{siteprefixexp} = '/wierd/prefix';
+ $M->{config}{siteprefixexp} = catdir(File::Spec->rootdir,
+ 'wierd', 'prefix');
my $prefix = catdir('another', 'prefix');
$M->prefix($prefix);
|