From 635c4a8e6749c9fbb8bb2e80fd9e90a25d12a3ea Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Sun, 28 Jun 2015 14:06:46 +0200 Subject: [PATCH] i don't think this is correct --- update.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/update.py b/update.py index 3df84bf..5a29c5e 100755 --- a/update.py +++ b/update.py @@ -88,10 +88,6 @@ def gen_cmake_command(config): # take care of cmake definitions for section in config.sections(): - # export on Windows - definitions placed AFTER own cmake command - if config.has_option(section, 'export') and sys.platform == 'win32': - for env in config.get(section, 'export').split('\n'): - s.append(' command.append(%s)' % env) if config.has_option(section, 'define'): for definition in config.get(section, 'define').split('\n'): s.append(' command.append(%s)' % definition)