2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

restore correct version-tag extraction code

[SVN r25676]
This commit is contained in:
Aleksey Gurtovoy
2004-10-11 22:15:20 +00:00
parent 4f01e56508
commit 1eb5576310

View File

@@ -2628,7 +2628,7 @@ rule common-variant-tag ( toolset variant : properties * )
{
local version-number = [ get-values <version> : $(properties) ] ;
version-number ?= $(BOOST_VERSION) ;
version-tag = [ MATCH "^([^-]+)[.]([^-]+)" : $(version-number[1]) ] ;
version-tag = [ MATCH "^([^.]+)[.]([^.]+)" : $(version-number[1]) ] ;
version-tag = $(version-tag:J="_") ;
}