summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Niklas Hasse <jhasse@bixense.com>2022-01-28 12:17:46 +0100
committerGitHub <noreply@github.com>2022-01-28 12:17:46 +0100
commit41156cd9c97a4e49473c473b7952f8cb7c43c56c (patch)
treef3e971b058253b2e673b766eefd61c8db57d3e4c
parent7c2df31839302177b809fd5de33aa7727432d26f (diff)
parent5339c62bd63691d8030c6195cc83c50d5ccd9282 (diff)
downloadninja-41156cd9c97a4e49473c473b7952f8cb7c43c56c.tar.gz
Merge pull request #2055 from swills/still-dirty-time
Suggest possible cause for hitting cycle limit
-rw-r--r--src/ninja.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ninja.cc b/src/ninja.cc
index 89580ae..06be1da 100644
--- a/src/ninja.cc
+++ b/src/ninja.cc
@@ -1515,7 +1515,7 @@ NORETURN void real_main(int argc, char** argv) {
exit(result);
}
- status->Error("manifest '%s' still dirty after %d tries",
+ status->Error("manifest '%s' still dirty after %d tries, perhaps system time is not set",
options.input_file, kCycleLimit);
exit(1);
}