fixed typo in Jamfile making it fail when linking against librt

This commit is contained in:
Arvid Norberg 2008-05-09 17:07:08 +00:00
parent ebcb6861ca
commit 35f5ace67a
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ rule linking ( properties * )
# clock_gettime on linux requires librt
if <need-librt>yes in $(properties)
{
result += <library>rt ;
result += <library>librt ;
}
if <tcmalloc>yes in $(properties)