changeset cf0422cb8555 in /z/repo/m5
details: http://repo.m5sim.org/m5?cmd=changeset;node=cf0422cb8555
description:
        scons: don't maintain files in sorted order
        This causes builds to happen in sorted order rather than in
        declaration order. This gets annoying when you make a global change
        and then you notice that the files that are being compiled are jumping
        around the directory hierarchy.

diffstat:

1 file changed, 1 insertion(+), 1 deletion(-)
src/SConscript |    2 +-

diffs (12 lines):

diff -r 586b0e3a12b3 -r cf0422cb8555 src/SConscript
--- a/src/SConscript    Thu Apr 15 16:24:12 2010 -0700
+++ b/src/SConscript    Thu Apr 15 16:25:14 2010 -0700
@@ -88,7 +88,7 @@
 
         for base in type(self).__mro__:
             if issubclass(base, SourceFile):
-                bisect.insort_right(base.all, self)       
+                base.all.append(self)
 
     def __lt__(self, other): return self.filename < other.filename
     def __le__(self, other): return self.filename <= other.filename
_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to