aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-07-02 21:59:49 +0000
committerlloyd <[email protected]>2009-07-02 21:59:49 +0000
commit1163077648f0ee5719aebf9b1d73c552ada2aab3 (patch)
treea0f68d06d368bbad5a5cc9f2dc75862c2a120b48 /configure.py
parent8de767ca1c8b36a4c0f942fbb2fd4c6d6fd520ce (diff)
Minor hackery to deal with win32 library dependencies
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.py b/configure.py
index c27950d75..4d77d8042 100755
--- a/configure.py
+++ b/configure.py
@@ -407,8 +407,8 @@ class CompilerInfo(object):
return ['USE_STD_TR1']
elif self.compiler_has_tr1:
return ['USE_STD_TR1']
- else:
- return []
+
+ return []
class OsInfo(object):
def __init__(self, infofile):