From: Vincent Celier Date: Wed, 20 Aug 2008 15:29:33 +0000 (+0200) Subject: prj-nmsc.adb (Check_Naming_Schemes): Accept source file names for gprbuild when casin... X-Git-Tag: releases/gcc-4.4.0~3022 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa2fca8f34ba2372731c060464c00d1292ddd113;p=thirdparty%2Fgcc.git prj-nmsc.adb (Check_Naming_Schemes): Accept source file names for gprbuild when casing is MixedCase... 2008-08-20 Vincent Celier * prj-nmsc.adb (Check_Naming_Schemes): Accept source file names for gprbuild when casing is MixedCase, whatever the casing of the letters in the file name. From-SVN: r139312 --- diff --git a/gcc/ada/prj-nmsc.adb b/gcc/ada/prj-nmsc.adb index cf0f4725084b..db6a70cd7b01 100644 --- a/gcc/ada/prj-nmsc.adb +++ b/gcc/ada/prj-nmsc.adb @@ -7720,6 +7720,9 @@ package body Prj.Nmsc is end if; end loop; + when Mixed_Case => + null; + when others => OK := False; end case;