mirror of
https://github.com/boostorg/boost.git
synced 2025-04-08 06:43:09 +00:00
Unbreak the 'install' command.
[SVN r33488]
This commit is contained in:
parent
3a46b97e5c
commit
5187707b3d
1 changed files with 2 additions and 2 deletions
|
@ -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 ] )
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue