packaging win32

bzr revid: al@openerp.com-20121221142402-zfrwws823zl9wzuc
This commit is contained in:
Antony Lesuisse 2012-12-21 15:24:02 +01:00
parent fdfe8e04f8
commit 603b12edbd
1 changed files with 2 additions and 6 deletions

View File

@ -24,11 +24,6 @@ import glob
from distutils.core import setup
import py2exe
def datas():
r = []
if os.name == 'nt':
r.append(("Microsoft.VC90.CRT", glob.glob('C:\Microsoft.VC90.CRT\*.*')))
return r
meta = {}
execfile(os.path.join(os.path.dirname(__file__), '..', 'openerp', 'release.py'), meta)
@ -40,6 +35,8 @@ def generate_files():
}
files = []
if os.name == 'nt':
files.append(("Microsoft.VC90.CRT", glob.glob('C:\Microsoft.VC90.CRT\*.*')))
for action, steps in actions.items():
fname = action + '.bat'
files.append(fname)
@ -69,7 +66,6 @@ setup(service = ["OpenERPServerService"],
"skip_archive": 1,
"optimize": 2,
}},
data_files=datas(),
)
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: