summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-08-08 02:48:03 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-08-08 02:48:03 (GMT)
commit3a7ffa7474dfed34f32d52600a73517c8c6edbfc (patch)
tree056153ca0e7c05f37dbc4dfadf4d8a375bda014b /Lib/distutils
parentd84b29f8050f96b981dc13b2e63f7a91358c74a3 (diff)
downloadcpython-3a7ffa7474dfed34f32d52600a73517c8c6edbfc.zip
cpython-3a7ffa7474dfed34f32d52600a73517c8c6edbfc.tar.gz
cpython-3a7ffa7474dfed34f32d52600a73517c8c6edbfc.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 9688f20..a5a5010 100644
--- a/Lib/distutils/msvc9compiler.py
+++ b/Lib/distutils/msvc9compiler.py
@@ -413,7 +413,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']