Emergency fix for /tmp dir cleanup's for smokers.
[p5sagit/p5-mst-13.2.git] / lib / Module / Build / Platform / darwin.pm
CommitLineData
bb4e9162 1package Module::Build::Platform::darwin;
2
3use strict;
4use Module::Build::Platform::Unix;
5
6use vars qw(@ISA);
7@ISA = qw(Module::Build::Platform::Unix);
8
9# This class isn't necessary anymore, but we can't delete it, because
10# some people might still have the old copy in their @INC, containing
11# code we don't want to execute, so we have to make sure an upgrade
12# will replace it with this empty subclass.
13
141;
15__END__
16
17
18=head1 NAME
19
20Module::Build::Platform::darwin - Builder class for Mac OS X platform
21
22=head1 DESCRIPTION
23
24This module provides some routines very specific to the Mac OS X
25platform.
26
27Please see the L<Module::Build> for the general docs.
28
29=head1 AUTHOR
30
77e96e88 31Ken Williams <kwilliams@cpan.org>
bb4e9162 32
33=head1 SEE ALSO
34
35perl(1), Module::Build(3), ExtUtils::MakeMaker(3)
36
37=cut