summaryrefslogtreecommitdiff
path: root/giscanner/ccompiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'giscanner/ccompiler.py')
-rw-r--r--giscanner/ccompiler.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/giscanner/ccompiler.py b/giscanner/ccompiler.py
index d327c581..5db04535 100644
--- a/giscanner/ccompiler.py
+++ b/giscanner/ccompiler.py
@@ -271,10 +271,6 @@ class CCompiler(object):
args.append('dumpbin.exe')
args.append('-symbols')
- # Work around the attempt to resolve m.lib on Python 2.x
- if sys.version_info.major < 3:
- libraries[:] = [lib for lib in libraries if lib != 'm']
-
# When we are not using Visual C++ (i.e. we are using GCC)...
else:
libtool = utils.get_libtool_command(options)