public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [Patch][edk2-stable201908] BaseTools: fix an incremental build issue.
@ 2019-08-28  8:52 Bob Feng
  2019-08-28 15:26 ` Liming Gao
  0 siblings, 1 reply; 8+ messages in thread
From: Bob Feng @ 2019-08-28  8:52 UTC (permalink / raw)
  To: devel; +Cc: Bob Feng, Liming Gao, Steven Shi

BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=2137

This patch is going to fix a regression issue of incremental
build which was introduced by the commit 94459080c.
The changing on INF file will not trigger module rebuild.

Signed-off-by: Bob Feng <bob.c.feng@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Steven Shi <steven.shi@intel.com>
---
 BaseTools/Source/Python/AutoGen/ModuleAutoGen.py | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/BaseTools/Source/Python/AutoGen/ModuleAutoGen.py b/BaseTools/Source/Python/AutoGen/ModuleAutoGen.py
index 2cd0d3859e..f610365f6d 100755
--- a/BaseTools/Source/Python/AutoGen/ModuleAutoGen.py
+++ b/BaseTools/Source/Python/AutoGen/ModuleAutoGen.py
@@ -1764,16 +1764,12 @@ class ModuleAutoGen(AutoGen):
             for f in self.AutoGenDepSet:
                 FileSet.add (f.Path)
 
             if os.path.exists (self.TimeStampPath):
                 os.remove (self.TimeStampPath)
-            with tempfile.NamedTemporaryFile('w+', dir=os.path.dirname(self.TimeStampPath), delete=False) as tf:
-                for f in FileSet:
-                    tf.write(f)
-                    tf.write("\n")
-                tempname = tf.name
-            SaveFileOnChange(self.TimeStampPath, tempname, False)
+
+            SaveFileOnChange(self.TimeStampPath, "\n".join(FileSet), False)
 
         # Ignore generating makefile when it is a binary module
         if self.IsBinaryModule:
             return
 
-- 
2.20.1.windows.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-08-29  3:16 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-28  8:52 [Patch][edk2-stable201908] BaseTools: fix an incremental build issue Bob Feng
2019-08-28 15:26 ` Liming Gao
2019-08-28 15:56   ` Michael D Kinney
2019-08-28 16:10     ` Liming Gao
2019-08-28 17:31       ` Michael D Kinney
2019-08-28 18:06         ` [edk2-devel] " Michael D Kinney
2019-08-28 18:40         ` Michael D Kinney
2019-08-29  3:16           ` Bob Feng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox