forked from openkylin/platform_build
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
(cherry picked from commit 972a2681c6
)
Change-Id: I9b8516d1e7c113d667dcfb7963ee352972677afa
This commit is contained in:
parent
436d0c1117
commit
20de4fa41c
|
@ -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