diff --git a/setup.py b/setup.py index 0f48b134..aac73af0 100755 --- a/setup.py +++ b/setup.py @@ -41,8 +41,10 @@ class BuildData(build): if newer(po, mo): cmd = 'msgfmt -o %s %s' % (mo, po) info('compiling %s -> %s' % (po, mo)) - os.system(cmd) - + try: + os.system(cmd) + except: + pass class InstallData(install_data): def run (self):