diff options
author | Brad King <brad.king@kitware.com> | 2021-02-26 15:30:33 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-02-26 15:31:27 (GMT) |
commit | 212cd97679e783de77230b009b23dd11344644ac (patch) | |
tree | 7c60978cb2d9aedbd286816a0b671058210331b8 | |
parent | 100efbaf550f07c3b09d67489dad0c0ed5a6e542 (diff) | |
download | Ninja-212cd97679e783de77230b009b23dd11344644ac.zip Ninja-212cd97679e783de77230b009b23dd11344644ac.tar.gz Ninja-212cd97679e783de77230b009b23dd11344644ac.tar.bz2 |
doc: fix format of 'missingdeps' documentation
Group all the paragraphs together in the definition list entry.
-rw-r--r-- | doc/manual.asciidoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual.asciidoc b/doc/manual.asciidoc index 2cbe6a3..0ac0ebb 100644 --- a/doc/manual.asciidoc +++ b/doc/manual.asciidoc @@ -287,12 +287,12 @@ target, show just the target's dependencies. _Available since Ninja 1.4._ `missingdeps`:: given a list of targets, look for targets that depend on a generated file, but do not have a properly (possibly transitive) dependency on the generator. Such targets may cause build flakiness on clean builds. - ++ The broken targets can be found assuming deps log / depfile dependency information is correct. Any target that depends on a generated file (output of a generator-target) implicitly, but does not have an explicit or order-only dependency path to the generator-target, is considered broken. - ++ The tool's findings can be verified by trying to build the listed targets in a clean outdir without buidling any other targets. The build should fail for each of them with a missing include error or equivalent pointing to the |