The file name is in lower case.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@103 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
bbahnsen 2006-05-04 22:53:19 +00:00
parent 8fb9e6b8a1
commit c4e0f33e5d
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ public class ToolChainFactory {
//
// parse ${TARGET}_efi_flags
//
map = ConfigReader.parse(confPath, target + "_efi_flags.txt");
map = ConfigReader.parse(confPath, target.toLowerCase() + "_efi_flags.txt");
for (int i = 0; i < map.length; i++){
if(globalFlagsMap.containsKey(map[i][0])){
globalFlagsMap.remove(map[i][0]);