vcpkg/ports/boost-build/0002-fix-get-version.patch
Semphriss aa155bb022
[boost-build] Fix boost-exception for wasm32-emscripten (#22497)
* Fix boost-exception for wasm32-emscripten

* Updated port version for boost-exception

* Updated boost-exception with x-add-version

* Fixed patch

* Boost-build x-add-version

* Increment boost-build version again

* x-add-version for boost-build

* Fixed boost-build port version

* x-add-version for boost-build

Co-authored-by: Semphris <semphris@protonmail.com>
2022-01-19 09:09:48 -08:00

14 lines
479 B
Diff

diff --git a/src/tools/clang-linux.jam b/src/tools/clang-linux.jam
index 949e277..8934787 100644
--- a/src/tools/clang-linux.jam
+++ b/src/tools/clang-linux.jam
@@ -97,7 +97,7 @@ rule init ( version ? : command * : options * ) {
rule get-full-version ( command-string )
{
- return [ common.match-command-output version : "version ([0-9.]+)"
+ return [ common.match-command-output version : "([0-9]+.[0-9]+.[0-9]+)"
: "$(command-string) --version" ] ;
}