Unbreak the 'install' command.

[SVN r33488]
This commit is contained in:
Vladimir Prus 2006-03-27 14:41:30 +00:00
parent 3a46b97e5c
commit 5187707b3d

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 ] )