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

Make toolchain check work if version is provided.

[SVN r52437]
This commit is contained in:
Vladimir Prus
2009-04-17 07:42:34 +00:00
parent 47c9cd43fc
commit bb5579e553
2 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ local dll-suffix = so ;
local prefix = "" ;
if [ modules.peek : OS ] in CYGWIN NT
{
if $toolset = gcc
if [ MATCH ^(gcc) : $toolset ]
{
dll-suffix = dll ;
}
@@ -18,7 +18,7 @@ else
{
prefix = "lib" ;
}
if $toolset = darwin
if [ MATCH ^(darwin) : $toolset ]
{
dll-suffix = dylib ;
}

View File

@@ -9,7 +9,7 @@ local dll-suffix = so ;
local prefix = "" ;
if [ modules.peek : OS ] in CYGWIN NT
{
if $toolset = gcc
if [ MATCH ^(gcc) : $toolset ]
{
dll-suffix = dll ;
}
@@ -22,7 +22,7 @@ else
{
prefix = "lib" ;
}
if $toolset = darwin
if [ MATCH ^(darwin) : $toolset ]
{
dll-suffix = dylib ;
}