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

am: 1b21b85

* commit '1b21b85b119796d9007e874af99948a803805397':
  Allow for 5400 words in dump-words-to-file
This commit is contained in:
Przemyslaw Szczepaniak 2016-03-18 12:44:23 +00:00 committed by android-build-merger
commit 23649c76ce

View file

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