Skip to content

Commit 0277c7f

Browse files
authored
Merge pull request #158 from isuruf/wheel
Support bdist_wheel
2 parents 9c99b5b + 65097b5 commit 0277c7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,9 @@ def finalize_options(self):
168168
cmake_opts.extend(self.define)
169169

170170
cmake_build_type[0] = self.build_type
171-
cmake_opts.extend([('PYTHON_INSTALL_PATH', self.install_platlib)])
171+
cmake_opts.extend([('PYTHON_INSTALL_PATH', path.join(os.getcwd(), self.install_platlib))])
172172
cmake_opts.extend([('PYTHON_INSTALL_HEADER_PATH',
173-
self.install_headers)])
173+
path.join(os.getcwd(), self.install_headers))])
174174

175175
def cmake_install(self):
176176
source_dir = path.dirname(path.realpath(__file__))

0 commit comments

Comments
 (0)