Fixed a mistake in autodetection of versioned installation boost.
This commit is contained in:
parent
fff0d9b9f9
commit
640e5aff7c
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ def find_boost(env):
|
|||
include_index = version_nums.index(max(version_nums))
|
||||
prefix, includefile = includes[include_index]
|
||||
version = versions[include_index]
|
||||
env["boostdir"] = join(prefix, "include-" + str(version[0]) + "_" + str(version[1]))
|
||||
env["boostdir"] = join(prefix, "include", "boost-" + str(version[0]) + "_" + str(version[1]))
|
||||
env["boostlibdir"] = join(prefix, "lib")
|
||||
if not env.get("boost_suffix"):
|
||||
libs = glob(join(prefix, "lib", "libboost_*"))
|
||||
|
|
Loading…
Add table
Reference in a new issue