mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-31 01:24:12 +02:00
Fixes for case sensitive operating systems.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@502 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
3786747740
commit
fad77353ed
@ -69,9 +69,9 @@ public class FwImageTask extends Task implements EfiDefine{
|
|||||||
String path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");
|
String path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");
|
||||||
String command;
|
String command;
|
||||||
if (path == null) {
|
if (path == null) {
|
||||||
command = "fwimage";
|
command = "FwImage";
|
||||||
} else {
|
} else {
|
||||||
command = path + "/" + "fwimage";
|
command = path + "/" + "FwImage";
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
// argument of tools
|
// argument of tools
|
||||||
|
@ -62,9 +62,9 @@ public class GenCRC32SectionTask extends Task implements EfiDefine{
|
|||||||
String path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");
|
String path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");
|
||||||
String command;
|
String command;
|
||||||
if (path == null) {
|
if (path == null) {
|
||||||
command = "gencrc32section";
|
command = "GenCRC32Section";
|
||||||
} else {
|
} else {
|
||||||
command = path + "/" + "gencrc32section" ;
|
command = path + "/" + "GenCRC32Section" ;
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
// string line of input files
|
// 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 path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");
|
||||||
String command;
|
String command;
|
||||||
if (path == null) {
|
if (path == null) {
|
||||||
command = "gendepex";
|
command = "GenDepex";
|
||||||
} else {
|
} else {
|
||||||
command = path + "/" + "gendepex";
|
command = path + "/" + "GenDepex";
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
// argument of GenDepex tool
|
// argument of GenDepex tool
|
||||||
@ -163,4 +163,4 @@ public class GenDepexTask extends Task implements EfiDefine {
|
|||||||
public String getPadding() {
|
public String getPadding() {
|
||||||
return this.padding;
|
return this.padding;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -61,9 +61,9 @@ public class GenSectionTask extends Task implements EfiDefine {
|
|||||||
//
|
//
|
||||||
String path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");
|
String path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");
|
||||||
if (path == null) {
|
if (path == null) {
|
||||||
command = "gensection";
|
command = "GenSection";
|
||||||
} else {
|
} else {
|
||||||
command = path + "/" + "gensection";
|
command = path + "/" + "GenSection";
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
// argument of tools
|
// argument of tools
|
||||||
|
@ -49,9 +49,9 @@ public class SetStampTask extends Task implements EfiDefine {
|
|||||||
String path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");
|
String path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");
|
||||||
String command;
|
String command;
|
||||||
if (path == null) {
|
if (path == null) {
|
||||||
command = "setstamp";
|
command = "SetStamp";
|
||||||
} else {
|
} else {
|
||||||
command = path + "/" + "setstamp";
|
command = path + "/" + "SetStamp";
|
||||||
}
|
}
|
||||||
///
|
///
|
||||||
/// argument of SetStamp tool
|
/// argument of SetStamp tool
|
||||||
@ -133,4 +133,4 @@ public class SetStampTask extends Task implements EfiDefine {
|
|||||||
return this.timeFile;
|
return this.timeFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -111,9 +111,9 @@ public class StrGatherTask extends Task implements EfiDefine {
|
|||||||
String path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");
|
String path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");
|
||||||
String command;
|
String command;
|
||||||
if (path == null) {
|
if (path == null) {
|
||||||
command = "strgather";
|
command = "StrGather";
|
||||||
} else {
|
} else {
|
||||||
command = path + "/" + "strgather";
|
command = path + "/" + "StrGather";
|
||||||
}
|
}
|
||||||
|
|
||||||
///
|
///
|
||||||
|
Loading…
x
Reference in New Issue
Block a user