gecko-dev/toolkit/locales/generate_update_locale.py
Ted Mielczarek 0d6c1e30f1 bug 1416891 - use LOCALIZED_GENERATED_FILES for update.locale. r=nalexander
This change moves update.locale generation to moz.build using
LOCALIZED_GENERATED_FILES. Since the existing Makefile rules were simply
putting the name of the locale into the output file, the input template
has been removed and the generation script just writes the name of the
locale to the output.

MozReview-Commit-ID: 8FT2tpHpaa2

--HG--
extra : rebase_source : 8822645edf6f07cc2d16b7c8998a6ce09d3a25cb
2017-11-17 15:41:56 -05:00

14 lines
542 B
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/.
# Generate update.locale, which simply contains the name of the current locale.
from __future__ import unicode_literals, print_function
def main(output, locale=None):
assert(locale is not None)
# update.locale is a trivial file but let's be unicode aware anyway.
locale = unicode(locale, 'utf_8')
print(locale, file=output)