From fd96776cb65e3a6389817cf61ecdefd7bc06b372 Mon Sep 17 00:00:00 2001 From: Ted Mielczarek Date: Mon, 13 Nov 2017 15:45:12 -0500 Subject: [PATCH] bug 1407374 - move hunspell dictionary copying to LOCALIZED_FILES in moz.build. r=nalexander MozReview-Commit-ID: 833pqKcr4T9 --HG-- extra : rebase_source : 55503dc46fe99cb0e5b9b07915e10e091d65d403 extra : source : d9110808927225f45a7667f5048e6b2dfd2f2242 --- extensions/spellcheck/locales/Makefile.in | 7 ------- extensions/spellcheck/locales/moz.build | 4 ++++ 2 files changed, 4 insertions(+), 7 deletions(-) delete mode 100644 extensions/spellcheck/locales/Makefile.in diff --git a/extensions/spellcheck/locales/Makefile.in b/extensions/spellcheck/locales/Makefile.in deleted file mode 100644 index 4cd2a42049e5..000000000000 --- a/extensions/spellcheck/locales/Makefile.in +++ /dev/null @@ -1,7 +0,0 @@ -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -DICTIONARY_FILES = $(strip $(wildcard $(LOCALE_SRCDIR)/hunspell/*.dic) $(wildcard $(LOCALE_SRCDIR)/hunspell/*.aff)) -DICTIONARY_DEST = $(FINAL_TARGET)/dictionaries -INSTALL_TARGETS += DICTIONARY diff --git a/extensions/spellcheck/locales/moz.build b/extensions/spellcheck/locales/moz.build index 28919c271d33..13b5a7443b23 100644 --- a/extensions/spellcheck/locales/moz.build +++ b/extensions/spellcheck/locales/moz.build @@ -4,3 +4,7 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. +LOCALIZED_FILES.dictionaries += [ + 'en-US/hunspell/*.aff', + 'en-US/hunspell/*.dic', +]