We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7eb3638 + ab9b5ce commit 4151920Copy full SHA for 4151920
graalpython/com.oracle.graal.python.cext/setup.py
@@ -151,7 +151,7 @@ def install(self, build_dir=None):
151
dest_lib_filename = os.path.join(self.lib_install_dir, self.install_name)
152
153
logger.info("Installing dependency %s to %s" % (self.package_name, dest_lib_filename))
154
- shutil.move(os.path.join(build_dir, lib_filename), dest_lib_filename)
+ shutil.copy(os.path.join(build_dir, lib_filename), dest_lib_filename)
155
156
# also install the include file 'bzlib.h'
157
dest_include_filename = os.path.join(self.include_install_dir, self.header_name)
0 commit comments