summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2003-06-18 18:35:59 +0000
committerSteven Knight <knight@baldmt.com>2003-06-18 18:35:59 +0000
commit311058e447522c96a320b81bc8beaca41112c006 (patch)
treee4c8fae81af049dcb0319f978b24bb28d12df714 /src
parentb61917920644e58ab48cad87dabc19f9db6f0a64 (diff)
downloadscons-311058e447522c96a320b81bc8beaca41112c006.tar.gz
Change the double quotes around an up-to-date target to be like Make.
Diffstat (limited to 'src')
-rw-r--r--src/CHANGES.txt3
-rw-r--r--src/engine/SCons/Script/__init__.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index c37f3ab2..aadcc93e 100644
--- a/src/CHANGES.txt
+++ b/src/CHANGES.txt
@@ -57,6 +57,9 @@ RELEASE 0.15 - XXX
- Make the Script.Options() subclass match the underlying base class
implementation.
+ - When reporting a target is up to date, quote the target like make
+ (backquote-quote) instead of with double quotes.
+
From Steve Leblanc:
- Don't update the .sconsign files when run with -n.
diff --git a/src/engine/SCons/Script/__init__.py b/src/engine/SCons/Script/__init__.py
index 139d2964..9ae5229d 100644
--- a/src/engine/SCons/Script/__init__.py
+++ b/src/engine/SCons/Script/__init__.py
@@ -80,7 +80,7 @@ class BuildTask(SCons.Taskmaster.Task):
target = self.targets[0]
if target.get_state() == SCons.Node.up_to_date:
if self.top and target.has_builder():
- display('scons: "%s" is up to date.' % str(target))
+ display("scons: `%s' is up to date." % str(target))
elif target.has_builder() and not hasattr(target.builder, 'status'):
if print_time:
start_time = time.time()