diff options
author | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-09-13 02:15:32 +0000 |
---|---|---|
committer | jwang36 <jwang36@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-09-13 02:15:32 +0000 |
commit | 93f5dd0a0e476c3eca7bd2f8375733b49e5f1b66 (patch) | |
tree | 318f375a5d31cde2c5b2b5b94719154e4e30a953 /Tools/Source/TianoTools/MakeDeps/MakeDeps.c | |
parent | 5117b83be8d73a9c5d15b236e57e4d194d1d9428 (diff) | |
download | edk2-platforms-93f5dd0a0e476c3eca7bd2f8375733b49e5f1b66.tar.xz |
1) Changed ToolArg class to abstract generic arguments of a tool
2) Added FileArg class to abstract arguments which represent the path of a file
3) Changed the log method to EdkLog and the message format for flashmap, fwimage, gendepex, genfvimage, gensection, peirebase, strgather and vfrcompile tool. And changed these tools to use ToolArg and FileArg to keep their arguments.
4) Added more verbose message for OnDependency task
5) Changed MakeDeps tool to insert a file end flag. This is very useful when dependency check is broken occasionally
6) Cleaned the coding style of java code
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1519 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Tools/Source/TianoTools/MakeDeps/MakeDeps.c')
-rwxr-xr-x | Tools/Source/TianoTools/MakeDeps/MakeDeps.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/Source/TianoTools/MakeDeps/MakeDeps.c b/Tools/Source/TianoTools/MakeDeps/MakeDeps.c index 62964d0037..3943df0654 100755 --- a/Tools/Source/TianoTools/MakeDeps/MakeDeps.c +++ b/Tools/Source/TianoTools/MakeDeps/MakeDeps.c @@ -286,6 +286,7 @@ Finish: // Close our output file
//
if ((mGlobals.OutFptr != stdout) && (mGlobals.OutFptr != NULL)) {
+ fprintf(mGlobals.OutFptr, "\t\n"); // file ending flag
fclose (mGlobals.OutFptr);
}
|