diff options
author | Przemyslaw Szczepaniak <pszczepaniak@google.com> | 2016-02-24 12:07:21 +0000 |
---|---|---|
committer | Przemyslaw Szczepaniak <pszczepaniak@google.com> | 2016-03-18 12:09:44 +0000 |
commit | 0aeee045bdd26673b9be29b76d692ac93d1ea74b (patch) | |
tree | a111b4a5b3e4ac68a1d05322fcd12028107e1737 /core/definitions.mk | |
parent | f7cadb8cfd5bf0393d14029a5678df38b63d963b (diff) | |
download | platform_build-0aeee045bdd26673b9be29b76d692ac93d1ea74b.tar.gz platform_build-0aeee045bdd26673b9be29b76d692ac93d1ea74b.tar.bz2 platform_build-0aeee045bdd26673b9be29b76d692ac93d1ea74b.zip |
Allow for 5400 words in dump-words-to-file
After adding java.util.stream, doc-comment-check target
started to fail due to "Too many words" while
generating out/target/common/docs/doc-comment-check-timestamp.rsp
This change extends number of dumped words to 5400.
Bug: 27692239
Change-Id: Ifa75cada7b90c5737fc7a1d10325f3a49a2238ac
Diffstat (limited to 'core/definitions.mk')
-rw-r--r-- | core/definitions.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/definitions.mk b/core/definitions.mk index f3d981a23c..df9cfeca08 100644 --- a/core/definitions.mk +++ b/core/definitions.mk @@ -1918,7 +1918,8 @@ define dump-words-to-file @$(call emit-line,$(wordlist 4601,4800,$(1)),$(2)) @$(call emit-line,$(wordlist 4801,5000,$(1)),$(2)) @$(call emit-line,$(wordlist 5001,5200,$(1)),$(2)) - @$(if $(wordlist 5201,5202,$(1)),$(error Too many words ($(words $(1))))) + @$(call emit-line,$(wordlist 5201,5400,$(1)),$(2)) + @$(if $(wordlist 5401,5402,$(1)),$(error Too many words ($(words $(1))))) endef # For a list of jar files, unzip them to a specified directory, |