diff --git a/src/android/gen_subset_font.py b/src/android/gen_subset_font.py index 7c17b6e65..06de8d088 100644 --- a/src/android/gen_subset_font.py +++ b/src/android/gen_subset_font.py @@ -91,7 +91,8 @@ def MakeSubsetFont(fonttools_path, unicodes, input_font, output_font): # to temporary directory and copy the result with renaming. shutil.copy(input_font, tempdir) temp_input_font = os.path.join(tempdir, os.path.basename(input_font)) - commands = ['python', os.path.join(fonttools_path, 'subset.py'), + python_cmd = 'python' + commands = [python_cmd, os.path.join(fonttools_path, 'subset.py'), temp_input_font] commands.extend(['U+%08x' % ord(char) for char in unicodes]) env = os.environ.copy() @@ -136,4 +137,3 @@ def main(): if __name__ == '__main__': main() - diff --git a/src/mozc_version_template.txt b/src/mozc_version_template.txt index 53aded3aa..502ecb572 100644 --- a/src/mozc_version_template.txt +++ b/src/mozc_version_template.txt @@ -1,6 +1,6 @@ MAJOR=2 MINOR=17 -BUILD=2225 +BUILD=2226 REVISION=102 # NACL_DICTIONARY_VERSION is the target version of the system dictionary to be # downloaded by NaCl Mozc.