don't export extra when building tools

This commit is contained in:
Arvid Norberg 2014-03-30 20:11:01 +00:00
parent 6b39247d2f
commit dedc21f8c8
1 changed files with 2 additions and 2 deletions

View File

@ -15,12 +15,12 @@ rule link_libtorrent ( properties * )
if <link>shared in $(properties) if <link>shared in $(properties)
{ {
result += result +=
<library>/torrent//torrent/<link>shared/<boost-link>shared/<export-extra>on ; <library>/torrent//torrent/<link>shared/<boost-link>shared ;
} }
else else
{ {
result += result +=
<library>/torrent//torrent/<link>static/<boost-link>static/<export-extra>on ; <library>/torrent//torrent/<link>static/<boost-link>static ;
} }
return $(result) ; return $(result) ;
} }