Fixed EDKT111

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@959 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
jwang36 2006-07-13 06:52:32 +00:00
parent a3d0b5490b
commit 68542af1ea
1 changed files with 1 additions and 8 deletions

View File

@ -194,14 +194,7 @@ public class GenBuildTask extends Ant {
// If single module : intersection MSA supported ARCHs and tools def!! // If single module : intersection MSA supported ARCHs and tools def!!
// else, get arch from pass down // else, get arch from pass down
// //
String[] archList = new String[0]; String[] archList = GlobalData.getToolChainInfo().getArchs();
if ( getProject().getProperty("ARCH") != null ) {
archList = getProject().getProperty("ARCH").split(" ");
}
else {
archList = GlobalData.getToolChainInfo().getArchs();
}
// //
// Judge if arch is all supported by current module. If not, throw Exception. // Judge if arch is all supported by current module. If not, throw Exception.