Skip to content
Snippets Groups Projects
Commit 74a49e9d authored by Xavier Alt's avatar Xavier Alt
Browse files

[FIX] win32: also package vs2008 runtime under win32 so that service start correctly

bzr revid: xal@openerp.com-20120426092946-h3lfhojl608xf62z
parent bcc52b06
Branches
Tags
No related merge requests found
......@@ -19,9 +19,16 @@
#
##############################################################################
import os
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
setup(service=["OpenERPServerService"],
options={"py2exe":{"excludes":["Tkconstants","Tkinter","tcl",
......@@ -29,7 +36,8 @@ setup(service=["OpenERPServerService"],
"ImageTk", "PIL.ImageTk",
"FixTk"],
"skip_archive": 1,
"optimize": 2,}}
"optimize": 2,}},
data_files=datas(),
)
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment