mirror of https://github.com/acidanthera/audk.git
Fix capitalization
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@213 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
b030934bcd
commit
6959ee43bb
|
@ -68,9 +68,9 @@ public class FwImageTask extends Task implements EfiDefine{
|
|||
String path = project.getProperty("env.Framework_Tools_Path");
|
||||
String command;
|
||||
if (path == null) {
|
||||
command = "fwimage";
|
||||
command = "FwImage";
|
||||
} else {
|
||||
command = path + "/" + "fwimage";
|
||||
command = path + "/" + "FwImage";
|
||||
}
|
||||
//
|
||||
// argument of tools
|
||||
|
|
|
@ -62,9 +62,9 @@ public class GenCRC32SectionTask extends Task implements EfiDefine{
|
|||
String path = project.getProperty("env.Framework_Tools_Path");
|
||||
String command;
|
||||
if (path == null) {
|
||||
command = "gencrc32section";
|
||||
command = "GenCRC32Section";
|
||||
} else {
|
||||
command = path + "/" + "gencrc32section" ;
|
||||
command = path + "/" + "GenCRC32Section" ;
|
||||
}
|
||||
//
|
||||
// string line of input files
|
||||
|
|
|
@ -54,9 +54,9 @@ public class GenDepexTask extends Task implements EfiDefine {
|
|||
String path = project.getProperty("env.Framework_Tools_Path");
|
||||
String command;
|
||||
if (path == null) {
|
||||
command = "gendepex";
|
||||
command = "GenDepex";
|
||||
} else {
|
||||
command = path + "/" + "gendepex";
|
||||
command = path + "/" + "GenDepex";
|
||||
}
|
||||
//
|
||||
// argument of GenDepex tool
|
||||
|
|
|
@ -61,9 +61,9 @@ public class GenSectionTask extends Task implements EfiDefine {
|
|||
//
|
||||
String path = project.getProperty("env.Framework_Tools_Path");
|
||||
if (path == null) {
|
||||
command = "gensection";
|
||||
command = "GenSection";
|
||||
} else {
|
||||
command = path + "/" + "gensection";
|
||||
command = path + "/" + "GenSection";
|
||||
}
|
||||
//
|
||||
// argument of tools
|
||||
|
|
Loading…
Reference in New Issue