summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-08-08 02:48:26 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-08-08 02:48:26 (GMT)
commit917c2c36542131dd81f2b5b4d185c50d3b15546f (patch)
treec637363007dbcf8da237196b0314652881d2133b /Lib/distutils
parent8c7f9558eb82f740d162b21fe8e01cfdd961f0d3 (diff)
parent3a7ffa7474dfed34f32d52600a73517c8c6edbfc (diff)
downloadcpython-917c2c36542131dd81f2b5b4d185c50d3b15546f.zip
cpython-917c2c36542131dd81f2b5b4d185c50d3b15546f.tar.gz
cpython-917c2c36542131dd81f2b5b4d185c50d3b15546f.tar.bz2
Issue #4214: Remove ineffectual /pdb:none option from msvc9compiler.py
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/msvc9compiler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/msvc9compiler.py b/Lib/distutils/msvc9compiler.py
index d1374ef..da4b21d 100644
--- a/Lib/distutils/msvc9compiler.py
+++ b/Lib/distutils/msvc9compiler.py
@@ -416,7 +416,7 @@ class MSVCCompiler(CCompiler) :
self.ldflags_shared = ['/DLL', '/nologo', '/INCREMENTAL:NO']
if self.__version >= 7:
self.ldflags_shared_debug = [
- '/DLL', '/nologo', '/INCREMENTAL:no', '/DEBUG', '/pdb:None'
+ '/DLL', '/nologo', '/INCREMENTAL:no', '/DEBUG'
]
self.ldflags_static = [ '/nologo']