build: fix distribution of font files (#8237)

This commit is contained in:
Frédéric Péters 2015-09-10 22:44:42 +02:00
parent f43acfd0b9
commit e0c5f65d96
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class install_data(_install_data):
def data_tree(destdir, sourcedir):
extensions = ['.css', '.png', '.jpeg', '.jpg', '.gif', '.xml', '.html',
'.js', '.ezt', '.dat', '*.eot', '*.svg', '*.ttf', '*.woff']
'.js', '.ezt', '.dat', '.eot', '.svg', '.ttf', '.woff']
r = []
for root, dirs, files in os.walk(sourcedir):
l = [os.path.join(root, x) for x in files if os.path.splitext(x)[1] in extensions]