|
From: <gi...@us...> - 2011-09-15 08:45:22
|
Revision: 2316
http://edk2-buildtools.svn.sourceforge.net/edk2-buildtools/?rev=2316&view=rev
Author: gikidy
Date: 2011-09-15 08:45:16 +0000 (Thu, 15 Sep 2011)
Log Message:
-----------
Fix a bug that FvReportFileName case is not correct will cause issue under case sensitive system.
Signed-off-by: gikidy
Reviewed-by: yingke
Modified Paths:
--------------
trunk/BaseTools/Source/Python/build/BuildReport.py
Modified: trunk/BaseTools/Source/Python/build/BuildReport.py
===================================================================
--- trunk/BaseTools/Source/Python/build/BuildReport.py 2011-09-15 08:44:05 UTC (rev 2315)
+++ trunk/BaseTools/Source/Python/build/BuildReport.py 2011-09-15 08:45:16 UTC (rev 2316)
@@ -1258,7 +1258,7 @@
FvTotalSize = 0
FvTakenSize = 0
FvFreeSize = 0
- FvReportFileName = os.path.join(self._FvDir, FvName + ".fv.txt")
+ FvReportFileName = os.path.join(self._FvDir, FvName + ".Fv.txt")
try:
#
# Collect size info in the firmware volume.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|