Merge revision 1.64 from trunk

[SVN r33489]
This commit is contained in:
Vladimir Prus 2006-03-27 14:42:50 +00:00
parent 40311a3d87
commit b730b9d504

View file

@ -501,14 +501,14 @@ def bjam_command( toolsets, v2 ):
return result
def install( toolsets, **unused ):
def install( toolsets, v2, **unused ):
import_utils()
os.chdir( os.path.join( boost_root ) )
log( 'Making "%s" directory...' % regression_results )
utils.makedirs( regression_results )
install_cmd = '%s -d2 install >>%s 2>&1' % ( bjam_command( toolsets ), install_log )
install_cmd = '%s -d2 install >>%s 2>&1' % ( bjam_command( toolsets, v2 ), install_log )
log( 'Installing libraries (%s)...' % install_cmd )
utils.system( [ install_cmd ] )