This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
613f422
)
Correct the arguments to MBTest->tmpdir() to reflect implementation changes.
author
Nicholas Clark
<nick@ccl4.org>
Wed, 18 Nov 2009 09:52:12 +0000
(09:52 +0000)
committer
Nicholas Clark
<nick@ccl4.org>
Wed, 18 Nov 2009 09:52:12 +0000
(09:52 +0000)
cpan/Module-Build/t/xs.t
patch
|
blob
|
blame
|
history
diff --git
a/cpan/Module-Build/t/xs.t
b/cpan/Module-Build/t/xs.t
index
6d167c8
..
9471c1a
100644
(file)
--- a/
cpan/Module-Build/t/xs.t
+++ b/
cpan/Module-Build/t/xs.t
@@
-24,7
+24,7
@@
blib_load('Module::Build');
plan tests => 20;
}
require Cwd;
- $tmp = MBTest->tmpdir( $tmp_exec ?
undef : Cwd::cwd
);
+ $tmp = MBTest->tmpdir( $tmp_exec ?
() : (DIR => Cwd::cwd)
);
}