aboutsummaryrefslogtreecommitdiff
path: root/scripts/boost/generate-ports.ps1
diff options
context:
space:
mode:
authoryurybura <yurybura@gmail.com>2020-03-02 21:41:27 +0300
committerGitHub <noreply@github.com>2020-03-02 10:41:27 -0800
commit1c414f9192e49963c15bd64cdc2eb308cd046194 (patch)
tree0a3d9b95298e2d6fa94817bfc4211bc13aa641ae /scripts/boost/generate-ports.ps1
parent1e697e97daf199ac52b5e154bbb9b1a6511aaf2e (diff)
downloadvcpkg-1c414f9192e49963c15bd64cdc2eb308cd046194.tar.gz
vcpkg-1c414f9192e49963c15bd64cdc2eb308cd046194.zip
[boost-python] Try to fix build issue on Linux (#9780)
* [boost-python] Try to fix build issue on Linux * Update baseline: enable boost-python:x64-linux * Fix number of processor detection on Linux: use CMake module * Fix user-config.jam configuration on Linux * Update baseline: enable boost-mpi:x64-linux * Fix build boost-regex[icu] on Linux, issue #4962
Diffstat (limited to 'scripts/boost/generate-ports.ps1')
-rw-r--r--scripts/boost/generate-ports.ps16
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/boost/generate-ports.ps1 b/scripts/boost/generate-ports.ps1
index 36ddfe66e..ec32e53fb 100644
--- a/scripts/boost/generate-ports.ps1
+++ b/scripts/boost/generate-ports.ps1
@@ -46,9 +46,9 @@ function Generate()
$controlDeps = ($Depends | sort) -join ", "
$versionSuffix = ""
- if ($Name -eq "iostreams")
+ if ($PortName -eq "iostreams" -or $PortName -eq "python")
{
- $versionsuffix = "-1"
+ $versionSuffix = "-1"
}
mkdir "$portsDir/boost-$PortName" -erroraction SilentlyContinue | out-null
@@ -363,7 +363,7 @@ foreach ($library in $libraries)
if ($library -eq "python")
{
- $deps += @("python3 (!osx&!linux)")
+ $deps += @("python3")
$needsBuild = $true
}
elseif ($library -eq "iostreams")