aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-16 17:46:41 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-16 17:46:41 -0800
commit1574180d03f6ce2f0530c536ed0d4cbd60597e89 (patch)
tree613ad5b1783173b35f8a67789e65c7ec5c7b28b2
parent0ca3e5b16007355432a833232ec835530bba3d9b (diff)
downloadvcpkg-1574180d03f6ce2f0530c536ed0d4cbd60597e89.tar.gz
vcpkg-1574180d03f6ce2f0530c536ed0d4cbd60597e89.zip
[boost] --toolset=msvc should be toolset=msvc (no dashes)
-rw-r--r--ports/boost/portfile.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/ports/boost/portfile.cmake b/ports/boost/portfile.cmake
index 7394e70ea..f113fc30e 100644
--- a/ports/boost/portfile.cmake
+++ b/ports/boost/portfile.cmake
@@ -31,11 +31,11 @@ endif()
message(STATUS "Bootstrapping done")
set(B2_OPTIONS
- --toolset=msvc
+ toolset=msvc
+ threading=multi
-j$ENV{NUMBER_OF_PROCESSORS}
-q
- --without-python
- threading=multi
+ --without-python
--debug-configuration
)