Bug 1204712 - Handle wildcards properly for localized content in jar manifests. r=gps

This commit is contained in:
Mike Hommey 2015-09-15 09:23:37 +09:00
Родитель a927b107f0
Коммит b8c10aca4a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -388,7 +388,7 @@ class JarMaker(object):
m.group('optPreprocess') or '',
m.group('optOverwrite') or '',
out,
m.group('locale') or '',
m.group('locale').replace('%', '%%') or '',
)
for _srcdir in src_base:
finder = FileFinder(_srcdir, find_executables=False)