diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-08-21 01:11:34 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-08-21 14:11:04 -0700 |
commit | 372a31d8f53707bcfa9c233ce02a93f778b7bb4b (patch) | |
tree | e918a495e1cdbf02230562c16b257ee2c3abc5c4 | |
parent | 5bd13da38ce1da800b0c3011ce3201c3b88541c3 (diff) | |
download | perl-372a31d8f53707bcfa9c233ce02a93f778b7bb4b.tar.gz |
smoke-me diag
nt,hun
-rwxr-xr-x | configpm | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1135,7 +1135,10 @@ EOS unshift(@INC,'lib'); unshift(@INC,'xlib/symbian') if $Opts{cross}; require $Config_PM; -require $Config_heavy; + if (!eval {require $Config_heavy}) { + open my $fh, "<", $Config_heavy; + print STDERR while <$fh>; + } import Config; die "$0: $Config_PM not valid" |