This is an automatically generated mail from the syncmail system. Do not reply
directly to this email. Further discussion should take place on the hackers
list: [EMAIL PROTECTED]
Update of /cvsroot/perl-win32-gui/Win32-GUI/build_tools
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8972/build_tools
Modified Files:
SrcParser.pm
Log Message:
Minor tweaks
Index: SrcParser.pm
===================================================================
RCS file: /cvsroot/perl-win32-gui/Win32-GUI/build_tools/SrcParser.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** SrcParser.pm 16 Mar 2006 23:14:31 -0000 1.5
--- SrcParser.pm 9 Feb 2008 08:51:27 -0000 1.6
***************
*** 207,211 ****
sub get_package_list
{
! return sort { uc $a cmp uc $b } keys %PACKAGES;
}
--- 207,214 ----
sub get_package_list
{
! my @tmp = sort { uc $a cmp uc $b } keys %PACKAGES;
! # Extra @tmp copy needed on perl 5.6.1 to avoid error
! # 'sort routine did not return numeric value'
! return @tmp;
}
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Perl-win32-gui-cvscommit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-cvscommit
http://perl-win32-gui.sourceforge.net/