diff options
author | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-20 10:40:46 +0000 |
---|---|---|
committer | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-20 10:40:46 +0000 |
commit | 57cc2ee710e6a12621f879dd5e95dc7d4fb8cba9 (patch) | |
tree | 5f1c6a0d3b29cef1fca32b1f51aab0ec81bc1d15 /Tools/Source/FrameworkTasks | |
parent | 0647c9adf92c6a8712091607a73b2768327a865d (diff) | |
download | edk2-platforms-57cc2ee710e6a12621f879dd5e95dc7d4fb8cba9.tar.xz |
a) Fixed the issue that the unnecessary build for not specified ARCH in single module build
b) Fixed the issue that mixed case of FV name will cause invalid inf file generation
c) Fixed the issue that not specified outputDir will cause tool (flashmap, efirom) cannot be launched
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1056 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Source/FrameworkTasks')
-rw-r--r-- | Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/EfiRomTask.java | 2 | ||||
-rw-r--r-- | Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/FlashMapTask.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/EfiRomTask.java b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/EfiRomTask.java index 763b73f339..ff2be738f7 100644 --- a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/EfiRomTask.java +++ b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/EfiRomTask.java @@ -93,7 +93,7 @@ public class EfiRomTask extends Task implements EfiDefine { ///
/// output directory
///
- private String outputDir = "";
+ private String outputDir = ".";
///
diff --git a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/FlashMapTask.java b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/FlashMapTask.java index 436fd64826..e494e564c8 100644 --- a/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/FlashMapTask.java +++ b/Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/FlashMapTask.java @@ -117,7 +117,7 @@ public class FlashMapTask extends Task implements EfiDefine { // /
// / output directory
// /
- private String outputDir = "";
+ private String outputDir = ".";
// /
// / MCI file array
|