diff options
author | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-13 06:52:32 +0000 |
---|---|---|
committer | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-13 06:52:32 +0000 |
commit | 68542af1ea969b7bf685befc9117e517257d840c (patch) | |
tree | f1bb7067d4c9a5611787b0aa4482f568b5435cf2 /Tools/Source/GenBuild | |
parent | a3d0b5490bd2f6a4b5ee9828b09f399029cafb46 (diff) | |
download | edk2-platforms-68542af1ea969b7bf685befc9117e517257d840c.tar.xz |
Fixed EDKT111
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@959 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Source/GenBuild')
-rw-r--r-- | Tools/Source/GenBuild/org/tianocore/build/GenBuildTask.java | 9 |
1 files changed, 1 insertions, 8 deletions
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.
|