mirror of https://github.com/acidanthera/audk.git
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
This commit is contained in:
parent
3134cc7386
commit
13cbe22d4f
|
@ -303,6 +303,7 @@ public class GlobalData {
|
||||||
Iterator iter = packageList.iterator();
|
Iterator iter = packageList.iterator();
|
||||||
while (iter.hasNext()) {
|
while (iter.hasNext()) {
|
||||||
PackageIdentification pid = (PackageIdentification)iter.next();
|
PackageIdentification pid = (PackageIdentification)iter.next();
|
||||||
|
moduleId.setPackage(pid);
|
||||||
Spd spd = spdTable.get(pid);
|
Spd spd = spdTable.get(pid);
|
||||||
File tempMsaFile = null;
|
File tempMsaFile = null;
|
||||||
if ((tempMsaFile = spd.getModuleFile(moduleId)) != null ) {
|
if ((tempMsaFile = spd.getModuleFile(moduleId)) != null ) {
|
||||||
|
|
Loading…
Reference in New Issue