bug 1407374 - move hunspell dictionary copying to LOCALIZED_FILES in moz.build. r?build-peer
MozReview-Commit-ID: 833pqKcr4T9
deleted file mode 100644
--- 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
--- a/extensions/spellcheck/locales/moz.build
+++ b/extensions/spellcheck/locales/moz.build
@@ -1,6 +1,10 @@
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# 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/.
+LOCALIZED_FILES.dictionaries += [
+ 'en-US/hunspell/*.aff',
+ 'en-US/hunspell/*.dic',
+]