[blaze] Fix remaining stray _INVALID_ROOT_

This commit is contained in:
Robert Schumacher 2017-11-01 11:41:51 -07:00
parent 2de9c9bea3
commit b54f4f26ae
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
Source: blaze
Version: 3.2-1
Version: 3.2-2
Build-Depends: boost, clapack
Description: Blaze is an open-source, high-performance C++ math library for dense and sparse arithmetic.

View File

@ -119,6 +119,7 @@ function(vcpkg_fixup_cmake_targets)
string(REPLACE "${CURRENT_INSTALLED_DIR}" "_INVALID_ROOT_" _contents "${_contents}")
string(REGEX REPLACE ";_INVALID_ROOT_/[^\";]*" "" _contents "${_contents}")
string(REGEX REPLACE "_INVALID_ROOT_/[^\";]*;" "" _contents "${_contents}")
string(REGEX REPLACE "\"_INVALID_ROOT_/[^\";]*\"" "\"\"" _contents "${_contents}")
file(WRITE ${MAIN_TARGET} "${_contents}")
endforeach()