summaryrefslogtreecommitdiff
path: root/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/StrGatherTask.java
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/StrGatherTask.java')
-rw-r--r--Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/StrGatherTask.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/StrGatherTask.java b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/StrGatherTask.java
index c136f15511..8368caa4bd 100644
--- a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/StrGatherTask.java
+++ b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/StrGatherTask.java
@@ -108,12 +108,12 @@ public class StrGatherTask extends Task implements EfiDefine {
///
/// absolute path of efi tools
///
- String path = project.getProperty("env.Framework_Tools_Path");
+ String path = project.getProperty("env.FRAMEWORK_TOOLS_PATH");
String command;
if (path == null) {
- command = "StrGather";
+ command = "strgather";
} else {
- command = path + "/" + "StrGather";
+ command = path + "/" + "strgather";
}
///