Removed code which copied qm files since it was no longer necessary.

This commit is contained in:
Raoul Snyman 2011-05-25 07:51:08 +02:00
parent 8c9728c3b2
commit 9adc234845
1 changed files with 0 additions and 10 deletions

View File

@ -290,16 +290,6 @@ def generate_binaries():
else:
os.chdir(os.path.abspath(u'..'))
run(u'lrelease openlp.pro')
os.chdir(os.path.abspath(u'scripts'))
src_path = os.path.join(os.path.abspath(u'..'), u'resources', u'i18n')
dest_path = os.path.join(os.path.abspath(u'..'), u'resources', u'i18n')
if not os.path.exists(dest_path):
os.makedirs(dest_path)
src_list = os.listdir(src_path)
for file in src_list:
if re.search('.qm$', file):
copy(os.path.join(src_path, u'%s' % file),
os.path.join(dest_path, u'%s' % file))
print_quiet(u' Done.')