diff options
author | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-12-25 05:26:45 +0000 |
---|---|---|
committer | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-12-25 05:26:45 +0000 |
commit | 13cbe22d4fb0bafe6938cd28ea35ee1514cf2d69 (patch) | |
tree | abe4371ceb54736399dce366977d7259ba204e6a /Tools | |
parent | 3134cc73868e51e93d2af8422cc27c88bd9af386 (diff) | |
download | edk2-platforms-13cbe22d4fb0bafe6938cd28ea35ee1514cf2d69.tar.xz |
Fixed a bug which will cause single module build fail
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2135 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/Java/Source/GenBuild/org/tianocore/build/global/GlobalData.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/Java/Source/GenBuild/org/tianocore/build/global/GlobalData.java b/Tools/Java/Source/GenBuild/org/tianocore/build/global/GlobalData.java index 77beb85bae..f941f4d03d 100644 --- a/Tools/Java/Source/GenBuild/org/tianocore/build/global/GlobalData.java +++ b/Tools/Java/Source/GenBuild/org/tianocore/build/global/GlobalData.java @@ -303,6 +303,7 @@ public class GlobalData { Iterator iter = packageList.iterator();
while (iter.hasNext()) {
PackageIdentification pid = (PackageIdentification)iter.next();
+ moduleId.setPackage(pid);
Spd spd = spdTable.get(pid);
File tempMsaFile = null;
if ((tempMsaFile = spd.getModuleFile(moduleId)) != null ) {
|