- or download this
DIRFILESEP = \\
DFSEP = $(DIRFILESEP)
- or download this
sub init_DIRFILESEP {
my($self) = shift;
...
$self->is_make_type('dmake') ? '\\\\'
: '\\';
}
- or download this
sub init_DIRFILESEP {
my($self) = shift;
...
$self->is_make_type('dmake') ? '\\'
: '\\';
}
- or download this
C:\sisyphusion\IO-React-1.03>perl makefile.PL
Checking if your kit is complete...
...
C:\sisyphusion\IO-React-1.03>dmake
dmake: Error: -- `C:\_32\strawberry514\perl\libConfig.pm' not found,
+and can't be made
- or download this
DIRFILESEP = \
DFSEP = $(DIRFILESEP)
- or download this
sub init_DIRFILESEP {
return '\\\\';
}