mirror of https://github.com/acidanthera/audk.git
Fix EDKT212.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1385 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
2e482fb5d5
commit
80eb97ffc0
|
@ -433,7 +433,7 @@ public class FpdParserTask extends Task {
|
|||
private ToolChainMap parseModuleBuildOptions(boolean toolChainFamilyFlag) throws EdkException {
|
||||
String[][] options = SurfaceAreaQuery.getModuleBuildOptions(toolChainFamilyFlag);
|
||||
if (options == null || options.length == 0) {
|
||||
return null;
|
||||
return new ToolChainMap();
|
||||
}
|
||||
return parseOptions(options);
|
||||
}
|
||||
|
@ -441,7 +441,7 @@ public class FpdParserTask extends Task {
|
|||
private ToolChainMap parsePlatformBuildOptions(boolean toolChainFamilyFlag) throws EdkException {
|
||||
String[][] options = SurfaceAreaQuery.getPlatformBuildOptions(toolChainFamilyFlag);
|
||||
if (options == null || options.length == 0) {
|
||||
return null;
|
||||
return new ToolChainMap();
|
||||
}
|
||||
return parseOptions(options);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue