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

Merge from trunk

[SVN r52438]
This commit is contained in:
Vladimir Prus
2009-04-17 07:48:18 +00:00
parent 1e0f2096b6
commit 34714cef1e
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 ;
}