From 603b12edbdfc0a27be6132d654400a9ea597656e Mon Sep 17 00:00:00 2001 From: Antony Lesuisse Date: Fri, 21 Dec 2012 15:24:02 +0100 Subject: [PATCH] packaging win32 bzr revid: al@openerp.com-20121221142402-zfrwws823zl9wzuc --- win32/setup.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/win32/setup.py b/win32/setup.py index 0feedce01e0..b0b36b5c6b4 100644 --- a/win32/setup.py +++ b/win32/setup.py @@ -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: