Fix a typo.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2218 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
bbahnsen
2007-01-11 07:11:34 +00:00
parent 38a7027076
commit b12dbde369

View File

@ -29,11 +29,11 @@ def mkdir(path):
except: except:
pass pass
def openMdeSpd(arch): def openSpd(spdFile, arch):
"""Open the MdePkg.spd and process the msa files.""" """Open the spdFile and process the msa files it contains."""
db = xml.dom.minidom.parse(inWorkspace("MdePkg/MdePkg.spd")) db = xml.dom.minidom.parse(inWorkspace(spdFile))
for msaFile in XmlList(db, "/PackageSurfaceArea/MsaFiles/Filename"): for msaFile in XmlList(db, "/PackageSurfaceArea/MsaFiles/Filename"):
msaFileName = XmlElementData(msaFile) msaFileName = XmlElementData(msaFile)
@ -76,7 +76,7 @@ def doLib(msafile, arch):
if ext in [".c", ".S"]: if ext in [".c", ".S"]:
obj = str(base+".o") obj = str(base+".o")
if obj in objects: if obj in objects:
print "Error: The msa file %s is ambigous. There are mutliple sources that can produce the object file %s. Please fix it." % (msafile, obj) print "Error: The msa file %s is ambiguous. There are mutliple sources that can produce the object file %s. Please fix it." % (msafile, obj)
sys.exit() sys.exit()
else: else:
objects.append(obj) objects.append(obj)
@ -101,4 +101,4 @@ def doLib(msafile, arch):
if __name__ == '__main__': if __name__ == '__main__':
for arch in ["IA32", "X64"]: for arch in ["IA32", "X64"]:
openMdeSpd(arch); openSpd("MdePkg/MdePkg.spd", arch);