From 794eb6f82d409aec725f22511acfab97da503d4d Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 24 May 2019 11:34:26 -0700 Subject: [PATCH] disable building the message catalogs, for now --- build.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/build.py b/build.py index bc4ac493..a5fca511 100755 --- a/build.py +++ b/build.py @@ -1336,16 +1336,16 @@ def cmd_build_wx(options, args): traceback.print_exc() sys.exit(1) - # Build the wx message catalogs, but first check that there is a msgfmt - # command available - if findCmd('msgfmt'): - locale_pwd = pushDir(posixjoin(wxDir(), 'locale')) - print('Building message catalogs in ' + os.getcwd()) - runcmd('make allmo') - del locale_pwd - else: - print("WARNING: msgfmt command not found, message catalogs not rebulit.\n" - " Please install gettext and associated tools.") + # # Build the wx message catalogs, but first check that there is a msgfmt + # # command available + # if findCmd('msgfmt'): + # locale_pwd = pushDir(posixjoin(wxDir(), 'locale')) + # print('Building message catalogs in ' + os.getcwd()) + # runcmd('make allmo') + # del locale_pwd + # else: + # print("WARNING: msgfmt command not found, message catalogs not rebulit.\n" + # " Please install gettext and associated tools.")