diff options
Diffstat (limited to '3rdParty/SCons/01_fix_tree.diff')
-rw-r--r-- | 3rdParty/SCons/01_fix_tree.diff | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3rdParty/SCons/01_fix_tree.diff b/3rdParty/SCons/01_fix_tree.diff new file mode 100644 index 0000000..13aa8f2 --- /dev/null +++ b/3rdParty/SCons/01_fix_tree.diff @@ -0,0 +1,22 @@ +diff --git a/3rdParty/SCons/scons-local-2.0.0.final.0/SCons/Util.py b/3rdParty/SCons/scons-local-2.0.0.final.0/SCons/Util.py +index a9b3421..45278fa 100644 +--- a/scons-local-2.0.0.final.0/SCons/Util.py ++++ b/scons-local-2.0.0.final.0/SCons/Util.py +@@ -179,7 +179,7 @@ def render_tree(root, child_func, prune=0, margin=[0], visited={}): + or in the whole tree if prune. + """ + +- rname = str(root) ++ rname = repr(str(root)) + + children = child_func(root) + retval = "" +@@ -223,7 +223,7 @@ def print_tree(root, child_func, prune=0, showtags=0, margin=[0], visited={}): + or in the whole tree if prune. + """ + +- rname = str(root) ++ rname = repr(str(root)) + + if showtags: + |