diff options
| author | Brett Cannon <bcannon@gmail.com> | 2008-08-17 04:16:04 (GMT) |
|---|---|---|
| committer | Brett Cannon <bcannon@gmail.com> | 2008-08-17 04:16:04 (GMT) |
| commit | 047e4a915d899b31dcb49fd820914df6a9991870 (patch) | |
| tree | e9d90462ffbe4d527fbbdb908eda52b4213578ab /Lib/distutils/command/build_ext.py | |
| parent | 94f243aa41286fa6f3733c21d7936222e7f6c251 (diff) | |
| download | cpython-047e4a915d899b31dcb49fd820914df6a9991870.zip cpython-047e4a915d899b31dcb49fd820914df6a9991870.tar.gz cpython-047e4a915d899b31dcb49fd820914df6a9991870.tar.bz2 | |
Update distutils so that it triggers no warnings when run under -3.
Diffstat (limited to 'Lib/distutils/command/build_ext.py')
| -rw-r--r-- | Lib/distutils/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 8cf7888..1461409 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -679,7 +679,7 @@ class build_ext (Command): so_ext = get_config_var('SO') if os.name == 'nt' and self.debug: return apply(os.path.join, ext_path) + '_d' + so_ext - return apply(os.path.join, ext_path) + so_ext + return os.path.join(*ext_path) + so_ext def get_export_symbols (self, ext): """Return the list of symbols that a shared extension has to |
