Emergency fix for /tmp dir cleanup's for smokers.
[p5sagit/p5-mst-13.2.git] / lib / Module / Build / Platform / cygwin.pm
1 package Module::Build::Platform::cygwin;
2
3 use strict;
4 use Module::Build::Platform::Unix;
5
6 use vars qw(@ISA);
7 @ISA = qw(Module::Build::Platform::Unix);
8
9 sub manpage_separator {
10    '.'
11 }
12
13 1;
14 __END__
15
16
17 =head1 NAME
18
19 Module::Build::Platform::cygwin - Builder class for Cygwin platform
20
21 =head1 DESCRIPTION
22
23 This module provides some routines very specific to the cygwin
24 platform.
25
26 Please see the L<Module::Build> for the general docs.
27
28 =head1 AUTHOR
29
30 Initial stub by Yitzchak Scott-Thoennes <sthoenna@efn.org>
31
32 =head1 SEE ALSO
33
34 perl(1), Module::Build(3), ExtUtils::MakeMaker(3)
35
36 =cut