summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-08-08 02:48:43 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-08-08 02:48:43 (GMT)
commit9548f1ee3854b5c9b0f2ef05c49cf42db22f8a4f (patch)
tree0af14dd4c32596e02ddc13939c0a2bd0c646942c /Lib/distutils
parent5060bc51ca7ad77e418ddfa007a1f6ff27877913 (diff)
parent917c2c36542131dd81f2b5b4d185c50d3b15546f (diff)
downloadcpython-9548f1ee3854b5c9b0f2ef05c49cf42db22f8a4f.zip
cpython-9548f1ee3854b5c9b0f2ef05c49cf42db22f8a4f.tar.gz
cpython-9548f1ee3854b5c9b0f2ef05c49cf42db22f8a4f.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']