summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2012-07-25 17:34:14 (GMT)
committerNico Weber <nicolasweber@gmx.de>2012-07-25 17:34:36 (GMT)
commita6fee5d01df65dff1a7b104d40c7a35e0d0a06b5 (patch)
tree9e489636a9b4dd33f2b3cb0e7324b523f5787bd4 /src
parent0787992b991f7f0617e1bcb69e71201f2a80b028 (diff)
downloadNinja-a6fee5d01df65dff1a7b104d40c7a35e0d0a06b5.zip
Ninja-a6fee5d01df65dff1a7b104d40c7a35e0d0a06b5.tar.gz
Ninja-a6fee5d01df65dff1a7b104d40c7a35e0d0a06b5.tar.bz2
Don't print 'Entering directory' when running tools.
Diffstat (limited to 'src')
-rw-r--r--src/ninja.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ninja.cc b/src/ninja.cc
index 809768c..619c3bf 100644
--- a/src/ninja.cc
+++ b/src/ninja.cc
@@ -707,7 +707,10 @@ int main(int argc, char** argv) {
// The formatting of this string, complete with funny quotes, is
// so Emacs can properly identify that the cwd has changed for
// subsequent commands.
- printf("ninja: Entering directory `%s'\n", working_dir);
+ // Don't print this if a tool is being used, so that tool output
+ // can be piped into a file without this string showing up.
+ if (tool == "")
+ printf("ninja: Entering directory `%s'\n", working_dir);
#ifdef _WIN32
if (_chdir(working_dir) < 0) {
#else