blob: eae77aea26918f21d9022cb1c7df419885367b64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/perl -w
BEGIN {
if( $ENV{PERL_CORE} ) {
chdir 't';
@INC = ('../lib', 'lib/');
}
else {
unshift @INC, 't/lib/';
}
}
chdir 't';
use Test::More tests => 1;
use ExtUtils::MakeMaker;
# For backwards compat with some Tk modules, dir_target() has to be there.
can_ok('MM', 'dir_target');
|