Er, no dirname here. Install .mo files to the right place.

This commit is contained in:
Thomas Hurst 2008-07-06 16:02:05 +01:00
parent b240340378
commit 5a3af71023
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class InstallData(install_data):
for mo in glob.glob (os.path.join (MO_DIR, '*.mo')):
lang = os.path.basename(mo[:-3])
dest = os.path.dirname(os.path.join('share', 'locale', lang, 'LC_MESSAGES', 'terminator.mo'))
dest = os.path.join('share', 'locale', lang, 'LC_MESSAGES', 'terminator.mo')
data_files.append((dest, [mo]))
return data_files