diff options
author | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-04 22:53:19 +0000 |
---|---|---|
committer | bbahnsen <bbahnsen@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-05-04 22:53:19 +0000 |
commit | c4e0f33e5d0acbce064735d105986a08de6aa2dd (patch) | |
tree | c4f00cc32db45a32b2d6792e8df6630fad0729c1 /Tools | |
parent | 8fb9e6b8a1806d6c95a1038421e7ec6686ef47d6 (diff) | |
download | edk2-platforms-c4e0f33e5d0acbce064735d105986a08de6aa2dd.tar.xz |
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
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/Source/GenBuild/org/tianocore/build/toolchain/ToolChainFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/Source/GenBuild/org/tianocore/build/toolchain/ToolChainFactory.java b/Tools/Source/GenBuild/org/tianocore/build/toolchain/ToolChainFactory.java index e3010fccf4..ce8e93fbfb 100644 --- a/Tools/Source/GenBuild/org/tianocore/build/toolchain/ToolChainFactory.java +++ b/Tools/Source/GenBuild/org/tianocore/build/toolchain/ToolChainFactory.java @@ -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]);
|