summaryrefslogtreecommitdiffstats
path: root/src/build.cc
diff options
context:
space:
mode:
authorScott Graham <scottmg@chromium.org>2013-04-09 17:03:46 (GMT)
committerScott Graham <scottmg@chromium.org>2013-04-09 17:03:46 (GMT)
commit808aa158be0d422a2ee5366a3f4eda29cd51c39a (patch)
tree1eec01a29e04b7207c40d162e4074feee149a52d /src/build.cc
parent3e5dce7ce641c600384268db3feb74cb8aac25b3 (diff)
downloadNinja-808aa158be0d422a2ee5366a3f4eda29cd51c39a.zip
Ninja-808aa158be0d422a2ee5366a3f4eda29cd51c39a.tar.gz
Ninja-808aa158be0d422a2ee5366a3f4eda29cd51c39a.tar.bz2
fix windows build after depslog
Diffstat (limited to 'src/build.cc')
-rw-r--r--src/build.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.cc b/src/build.cc
index ab3d781..39e3e2a 100644
--- a/src/build.cc
+++ b/src/build.cc
@@ -247,7 +247,7 @@ void BuildStatus::PrintStatus(Edge* edge) {
to_print = FormatProgressStatus(progress_status_format_) + to_print;
printer_.Print(to_print,
- force_full_command ? LinePrinter::FULL : LinePrinter::SHORT);
+ force_full_command ? LinePrinter::FULL : LinePrinter::ELIDE);
}
Plan::Plan() : command_edges_(0), wanted_edges_(0) {}