From 36ab8c14a785698711862e7736283f694e61a0ba Mon Sep 17 00:00:00 2001 From: Radovan Bast Date: Sun, 28 Jun 2015 15:30:23 +0200 Subject: [PATCH] comment --- update.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/update.py b/update.py index 1ec69d7..52fd6e6 100755 --- a/update.py +++ b/update.py @@ -81,6 +81,8 @@ def gen_cmake_command(config): for section in config.sections(): if config.has_option(section, 'export'): for env in config.get(section, 'export').split('\n'): + # FIXME there may be no win32 check in this file + # win32 platform dependency has to be dealt with in setup.py if sys.platform == 'win32': # on windows we have to replace: # CC=gcc CXX=g++ cmake [definitions] ..