X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=i18n.py;h=935bc3461b8792b665af79f8cb143997d2a77794;hb=cfcb0f5d66cc68d8d395480a95d4fe95c63e214e;hp=dc0a6ca7c9c554d36ae6f897e5ce244c52c7a832;hpb=26348e499951d2c22776cdb1409f09e628f58abe;p=dcpomatic.git diff --git a/i18n.py b/i18n.py index dc0a6ca7c..935bc3461 100644 --- a/i18n.py +++ b/i18n.py @@ -32,5 +32,5 @@ def po_to_mo(dir, name, bld): po = os.path.join('po', '%s.po' % lang) mo = os.path.join('mo', lang, '%s.mo' % name) - bld(rule = 'msgfmt -c -f ${SRC} -o ${TGT}', source = bld.path.make_node(po), target = bld.path.get_bld().make_node(mo)) + bld(rule='msgfmt -c ${SRC} -o ${TGT}', source=bld.path.make_node(po), target=bld.path.get_bld().make_node(mo)) bld.install_files(os.path.join('${PREFIX}', 'share', 'locale', lang, 'LC_MESSAGES'), mo)