summaryrefslogtreecommitdiff
path: root/setuptools/command/build_ext.py
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2022-06-24 15:57:06 +0100
committerAnderson Bravalheri <andersonbravalheri@gmail.com>2022-06-24 16:02:26 +0100
commit965458d1d271553d25f431ffebdb68bd12938f9a (patch)
tree5b5628ac6f29cd1e3a42acdc7a7fa193f85772be /setuptools/command/build_ext.py
parentfdd9ab363a88665b3678c661721c073f19982737 (diff)
downloadpython-setuptools-git-965458d1d271553d25f431ffebdb68bd12938f9a.tar.gz
Revert addition of use_links to build_lib
Diffstat (limited to 'setuptools/command/build_ext.py')
-rw-r--r--setuptools/command/build_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/build_ext.py b/setuptools/command/build_ext.py
index 31ef47bf..7ad5a87a 100644
--- a/setuptools/command/build_ext.py
+++ b/setuptools/command/build_ext.py
@@ -104,7 +104,7 @@ class build_ext(_build_ext):
# Always copy, even if source is older than destination, to ensure
# that the right extensions for the current Python/platform are
# used.
- build_py.copy_file(regular_file, inplace_file)
+ self.copy_file(regular_file, inplace_file, level=self.verbose)
if ext._needs_stub:
inplace_stub = self._get_equivalent_stub(ext, inplace_file)