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 9c99b5b + 65097b5 commit 0277c7fCopy full SHA for 0277c7f
setup.py
@@ -168,9 +168,9 @@ def finalize_options(self):
168
cmake_opts.extend(self.define)
169
170
cmake_build_type[0] = self.build_type
171
- cmake_opts.extend([('PYTHON_INSTALL_PATH', self.install_platlib)])
+ cmake_opts.extend([('PYTHON_INSTALL_PATH', path.join(os.getcwd(), self.install_platlib))])
172
cmake_opts.extend([('PYTHON_INSTALL_HEADER_PATH',
173
- self.install_headers)])
+ path.join(os.getcwd(), self.install_headers))])
174
175
def cmake_install(self):
176
source_dir = path.dirname(path.realpath(__file__))
0 commit comments