Update of /cvsroot/perl-win32-gui/Win32-GUI
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14359
Modified Files:
Makefile.PL
Log Message:
Attempt to stop spurious fail reports from CPAN testers
Index: Makefile.PL
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/Makefile.PL,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** Makefile.PL 13 Jan 2008 11:42:57 -0000 1.26
--- Makefile.PL 31 Jan 2008 00:41:27 -0000 1.27
***************
*** 58,61 ****
--- 58,66 ----
}
}
+ else {
+ # Attempt to stop CPAN Testers reporting build failures
+ # for OS's like linux!
+ die("OS unsupported\n");
+ }
}
***************
*** 209,212 ****
--- 214,218 ----
PREREQ_PM => {
'Test::More' => 0,
+ 'File::Spec' => 0.9, # Needed on perl 5.8.0 as 0.82 is broken
},
PM => {
|