diff options
Diffstat (limited to 'Master/tlpkg/tlperl.straw/lib/Module/Build/Platform/EBCDIC.pm')
-rwxr-xr-x | Master/tlpkg/tlperl.straw/lib/Module/Build/Platform/EBCDIC.pm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl.straw/lib/Module/Build/Platform/EBCDIC.pm b/Master/tlpkg/tlperl.straw/lib/Module/Build/Platform/EBCDIC.pm new file mode 100755 index 00000000000..140e27872aa --- /dev/null +++ b/Master/tlpkg/tlperl.straw/lib/Module/Build/Platform/EBCDIC.pm @@ -0,0 +1,34 @@ +package Module::Build::Platform::EBCDIC; + +use strict; +use vars qw($VERSION); +$VERSION = '0.3603'; +$VERSION = eval $VERSION; +use Module::Build::Base; + +use vars qw(@ISA); +@ISA = qw(Module::Build::Base); + + +1; +__END__ + + +=head1 NAME + +Module::Build::Platform::EBCDIC - Builder class for EBCDIC platforms + +=head1 DESCRIPTION + +The sole purpose of this module is to inherit from +C<Module::Build::Base>. Please see the L<Module::Build> for the docs. + +=head1 AUTHOR + +Ken Williams <kwilliams@cpan.org> + +=head1 SEE ALSO + +perl(1), Module::Build(3), ExtUtils::MakeMaker(3) + +=cut |