From 02a1af60b43a35eda0d14a63704522f619f061dc Mon Sep 17 00:00:00 2001 From: Daniel Mensinger Date: Sat, 4 Apr 2020 13:23:53 +0200 Subject: [PATCH] boost: fix missing Path --- win32/install.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/win32/install.ps1 b/win32/install.ps1 index ee1d3a5..8ffeccb 100644 --- a/win32/install.ps1 +++ b/win32/install.ps1 @@ -27,6 +27,8 @@ foreach ($p in "MSMPI_INC", "MSMPI_LIB32", "MSMPI_LIB64") { if ($Boost) { echo " - Using preinstalled boost version: $env:BOOST_ROOT" + $env:Path = "$env:BOOST_ROOT\lib;$env:Path" + # if ($Arch -eq "x64") { $BoostBitness = "64" } else { $BoostBitness = "32" } # echo " - Installing $BoostBitness bit boost" # Start-Process $ScriptDir\boost$BoostBitness.exe -ArgumentList "/dir=$env:AGENT_WORKFOLDER\boost_@BOOST_FILENAME@ /silent" -Wait