Skip to content

Commit

Permalink
- use correct variable
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergmann committed Nov 25, 2020
1 parent a380c0d commit dc0e61b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def build_cmake(self, extension):
cmake_args.append('-DLIBEXPAT_INCLUDE_DIR=' + join(DEP_DIR, 'include'))
cmake_args.append('-DLIBEXPAT_LIBRARY=' + get_lib_full_path(os.path.join(DEP_DIR, 'lib'), 'expat'))
cmake_args.append('-DLIBZ_LIBRARY=' + zlib)
cmake_args.append('-DLIBBZ_LIBRARY=' + get_lib_full_path(os.path.join(dep_inst_dir, 'lib'), 'bz2'))
cmake_args.append('-DLIBBZ_LIBRARY=' + get_lib_full_path(os.path.join(DEP_DIR, 'lib'), 'bz2'))

if is_win_32:
if DEP_DIR32:
Expand Down

0 comments on commit dc0e61b

Please sign in to comment.