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

Extend version-countdown to also support Python 3.1-3.4.

This commit is contained in:
Fredrik Orderud
2013-12-15 13:14:07 +01:00
committed by Vladimir Prus
parent 6a5a9b7c95
commit dc428e2ab3

View File

@@ -388,12 +388,12 @@ local rule split-version ( version )
}
# Build a list of versions from 3.0 down to 1.5. Because bjam can not enumerate
# Build a list of versions from 3.4 down to 1.5. Because bjam can not enumerate
# registry sub-keys, we have no way of finding a version with a 2-digit minor
# version, e.g. 2.10 -- let us hope that never happens.
#
.version-countdown = ;
for local v in [ numbers.range 15 30 ]
for local v in [ numbers.range 15 34 ]
{
.version-countdown = [ SUBST $(v) (.)(.*) $1.$2 ] $(.version-countdown) ;
}