Don't use lib64 and bin64 paths except for msvc builds. Refs #7055.

[SVN r79359]
This commit is contained in:
John Maddock
2012-07-08 16:50:23 +00:00
parent 0e867247fc
commit c2d2f656da

View File

@ -15,7 +15,7 @@ local disable-icu = [ MATCH (--disable-icu) : [ modules.peek : ARGV ] ] ;
rule path_options ( properties * )
{
local result ;
if <address-model>64 in $(properties)
if <address-model>64 in $(properties) && <toolset>msvc in $(properties)
{
result = <search>$(ICU_PATH)/bin64 <search>$(ICU_PATH)/lib64 ;
}