summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-10-08 02:07:05 (GMT)
committerSteven Knight <knight@baldmt.com>2004-10-08 02:07:05 (GMT)
commit94c0c7bf4cf4e35e73ce10fdb1b795fbf7ff1d2e (patch)
tree869300fdea27b6ec318f3c9a753abc04e4d8ef6d /src
parent364d71a38b3049074979b0c8252f6ccf7cdcc377 (diff)
downloadSCons-94c0c7bf4cf4e35e73ce10fdb1b795fbf7ff1d2e.zip
SCons-94c0c7bf4cf4e35e73ce10fdb1b795fbf7ff1d2e.tar.gz
SCons-94c0c7bf4cf4e35e73ce10fdb1b795fbf7ff1d2e.tar.bz2
Add a missing newline to the end of the --debug=explain unknown
Diffstat (limited to 'src')
-rw-r--r--src/CHANGES.txt3
-rw-r--r--src/engine/SCons/Node/__init__.py2
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: