Fixed EDKT419.
Removing C Pre-Processing from VfrCompile Tool. Now the input file for VfrCompile tool should be *.i file which was preprocessed by compiler. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1964 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -332,8 +332,8 @@ Returns:
|
||||
//
|
||||
// Open the input VFR file and the output list file
|
||||
//
|
||||
if ((InFptr = fopen (gOptions.PreprocessorOutputFileName, "r")) == NULL) {
|
||||
Warning (PROGRAM_NAME, 0, 0, gOptions.PreprocessorOutputFileName, "could not open file for creating a list file");
|
||||
if ((InFptr = fopen (gOptions.VfrFileName, "r")) == NULL) {
|
||||
Warning (PROGRAM_NAME, 0, 0, gOptions.VfrFileName, "could not open file for creating a list file");
|
||||
} else {
|
||||
if ((OutFptr = fopen (gOptions.VfrListFileName, "w")) == NULL) {
|
||||
Warning (PROGRAM_NAME, 0, 0, gOptions.VfrListFileName, "could not open output list file for writing");
|
||||
|
Reference in New Issue
Block a user