mirror of https://github.com/acidanthera/audk.git
Add hint if migration tool cannot handle an obsolete R8 library interface.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1593 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
d933fc5f1c
commit
503fefccb2
|
@ -23,8 +23,11 @@ public class Func {
|
|||
}
|
||||
Func(String[] linecontext) {
|
||||
r8funcname = linecontext[1];
|
||||
r8libname = linecontext[0];
|
||||
r8libname = linecontext[0];
|
||||
r9funcname = linecontext[2];
|
||||
if (r9funcname.contains("n/a")) {
|
||||
r9funcname = "#error Unknown or missing library function in EDKII: " + r8funcname;
|
||||
}
|
||||
r9libname = linecontext[3];
|
||||
}
|
||||
public String r8funcname;
|
||||
|
|
Loading…
Reference in New Issue