diff options
-rw-r--r-- | src/CHANGES.txt | 3 | ||||
-rw-r--r-- | src/engine/SCons/Node/__init__.py | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 80c14d1..0b647c9 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -88,6 +88,9 @@ RELEASE 0.97 - XXX - Fix env.SConscript() when called with a list of SConscipt files. (The SConscript() global function already worked properly.) + - Add a missing newline to the end of the --debug=explain "unknown + reasons" message. + From Clive Levinson: - Make ParseConfig() recognize and add -mno-cygwin to $LINKFLAGS and diff --git a/src/engine/SCons/Node/__init__.py b/src/engine/SCons/Node/__init__.py index 06bf6d6..27e185e 100644 --- a/src/engine/SCons/Node/__init__.py +++ b/src/engine/SCons/Node/__init__.py @@ -925,7 +925,7 @@ class Node: fmt_with_title('new: ', newact)) if len(lines) == 0: - return "rebuilding `%s' for unknown reasons" % self + return "rebuilding `%s' for unknown reasons\n" % self preamble = "rebuilding `%s' because" % self if len(lines) == 1: |