aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorManuel Kugelmann <public@bitcraft.org>2020-09-05 08:35:38 +0200
committerGitHub <noreply@github.com>2020-09-04 23:35:38 -0700
commit799e0d9cceb1bd1c7867d7a5efa4051cb858c497 (patch)
treeebbf4d43b0eca369efb9ad1de2ab5f164c844904 /scripts
parentae562b784143f4a5c0a410d06cb38f7936301969 (diff)
downloadvcpkg-799e0d9cceb1bd1c7867d7a5efa4051cb858c497.tar.gz
vcpkg-799e0d9cceb1bd1c7867d7a5efa4051cb858c497.zip
Fix [boost] MSVC 2013 v120 Build (#10645)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/boost/generate-ports.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/boost/generate-ports.ps1 b/scripts/boost/generate-ports.ps1
index 8136a9799..a19dc0343 100644
--- a/scripts/boost/generate-ports.ps1
+++ b/scripts/boost/generate-ports.ps1
@@ -417,7 +417,7 @@ foreach ($library in $libraries)
if ($libraries_in_boost_port.length -gt 1) {
# Generate master boost control file which depends on each individual library
# mpi is excluded due to it having a dependency on msmpi/openmpi
- $boostDependsList = @($libraries_in_boost_port | % { "boost-$_" } | ? { $_ -notmatch "boost-mpi" }) -join ", "
+ $boostDependsList = @($libraries_in_boost_port | % { "boost-$_" -replace "python","python (!v120)" } | ? { $_ -notmatch "boost-mpi" }) -join ", "
@(
"# Automatically generated by boost-vcpkg-helpers/generate-ports.ps1"