2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00

Fix property order.

This commit is contained in:
Steven Watanabe
2017-12-26 10:38:14 -07:00
parent 89b0e49d99
commit b339e8df4b

View File

@@ -62,14 +62,14 @@ def compute_path(properties):
path += "/release"
else:
path += "/debug"
if "threading=multi" in properties:
path += "/threading-multi"
if "link=static" in properties:
path += "/link-static"
if "runtime-link=static" in properties:
path += "/runtime-link-static"
if "target-os=linux" in properties:
path += "/target-os-linux"
if "threading=multi" in properties:
path += "/threading-multi"
return path
def test_gcc(version, property_sets):