From: jwang36 Date: Thu, 13 Jul 2006 06:52:32 +0000 (+0000) Subject: Fixed EDKT111 X-Git-Tag: edk2-stable201903~24901 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=68542af1ea969b7bf685befc9117e517257d840c;ds=sidebyside Fixed EDKT111 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@959 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/Tools/Source/GenBuild/org/tianocore/build/GenBuildTask.java b/Tools/Source/GenBuild/org/tianocore/build/GenBuildTask.java index bac506abfa..1c97da2825 100644 --- a/Tools/Source/GenBuild/org/tianocore/build/GenBuildTask.java +++ b/Tools/Source/GenBuild/org/tianocore/build/GenBuildTask.java @@ -194,14 +194,7 @@ public class GenBuildTask extends Ant { // If single module : intersection MSA supported ARCHs and tools def!! // else, get arch from pass down // - String[] archList = new String[0]; - if ( getProject().getProperty("ARCH") != null ) { - archList = getProject().getProperty("ARCH").split(" "); - } - else { - archList = GlobalData.getToolChainInfo().getArchs(); - } - + String[] archList = GlobalData.getToolChainInfo().getArchs(); // // Judge if arch is all supported by current module. If not, throw Exception.