diff options
author | Greg Ward <gward@python.net> | 2000-03-31 03:34:09 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-03-31 03:34:09 (GMT) |
commit | 6e8ee5d8e990d355fab602ab489ca43a7ae94aa5 (patch) | |
tree | ad0e509d60cfcd1fc0fd506111dc3cece6dd2b62 /Lib/distutils/msvccompiler.py | |
parent | 64231e5c39070ab4f8d92708cdc0b5799392b042 (diff) | |
download | cpython-6e8ee5d8e990d355fab602ab489ca43a7ae94aa5.zip cpython-6e8ee5d8e990d355fab602ab489ca43a7ae94aa5.tar.gz cpython-6e8ee5d8e990d355fab602ab489ca43a7ae94aa5.tar.bz2 |
Don't put Python's library directory into the library search path -- that's
specific to building Python extensions.
Diffstat (limited to 'Lib/distutils/msvccompiler.py')
-rw-r--r-- | Lib/distutils/msvccompiler.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index 2989910..c906e11 100644 --- a/Lib/distutils/msvccompiler.py +++ b/Lib/distutils/msvccompiler.py @@ -158,9 +158,6 @@ class MSVCCompiler (CCompiler) : force=0): CCompiler.__init__ (self, verbose, dry_run, force) - - self.add_library_dir( os.path.join( sys.exec_prefix, 'libs' ) ) - versions = get_devstudio_versions () if versions: |