Allow for 5200 words in dump-words-to-file
After switching to OpenJdk, doc-comment-check target started to fail due to "Too many words (5082)" while generating out/target/common/docs/doc-comment-check-timestamp.rsp This change extends number of dumped words to 5200. Bug: 25758743 Change-Id: Ifdc23d57c888c83533d237dd0a3bdafd20912cdf
This commit is contained in:
parent
d3e782563d
commit
972a2681c6
|
@ -1756,7 +1756,8 @@ define dump-words-to-file
|
|||
@$(call emit-line,$(wordlist 4401,4600,$(1)),$(2))
|
||||
@$(call emit-line,$(wordlist 4601,4800,$(1)),$(2))
|
||||
@$(call emit-line,$(wordlist 4801,5000,$(1)),$(2))
|
||||
@$(if $(wordlist 5001,5002,$(1)),$(error Too many words ($(words $(1)))))
|
||||
@$(call emit-line,$(wordlist 5001,5200,$(1)),$(2))
|
||||
@$(if $(wordlist 5201,5202,$(1)),$(error Too many words ($(words $(1)))))
|
||||
endef
|
||||
|
||||
# For a list of jar files, unzip them to a specified directory,
|
||||
|
|
Loading…
Reference in New Issue