[FIX] Added pixmaps directory in the build.

bzr revid: jth@openerp.com-20100920130047-ddllrpr50i79zxuk
This commit is contained in:
Julien Thewys 2010-09-20 15:00:47 +02:00
parent 715ffa2db5
commit 2f31181c20
1 changed files with 2 additions and 0 deletions

View File

@ -64,6 +64,8 @@ def data_files():
files.append((root, [join(root, name) for name in names]))
for root, _, names in os.walk('doc'):
files.append((root, [join(root, name) for name in names]))
for root, _, names in os.walk('pixmaps'):
files.append((root, [join(root, name) for name in names]))
files.append(('.', [join('bin', 'import_xml.rng'),
join('bin', 'server.pkey'),
join('bin', 'server.cert')]))