Merge "Allow for 5400 words in dump-words-to-file" into nyc-dev

This commit is contained in:
Przemyslaw Szczepaniak 2016-03-18 12:39:45 +00:00 committed by Android (Google) Code Review
commit 1b21b85b11
1 changed files with 2 additions and 1 deletions

View File

@ -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,