mirror of
https://github.com/boostorg/release-tools.git
synced 2026-01-19 04:42:10 +00:00
Make ci_boost_build.py install Boost in addition to building it
This commit is contained in:
@@ -40,9 +40,9 @@ class script(script_common):
|
||||
else:
|
||||
utils.check_call("./bootstrap.sh")
|
||||
|
||||
# Build Boost
|
||||
# Build and install Boost
|
||||
|
||||
cmd = [ './b2', '-j%s' % (self.jobs) ]
|
||||
cmd = [ './b2', '-j%s' % (self.jobs), '--prefix=' + os.path.expanduser( '~/.local' ), 'install' ]
|
||||
|
||||
if self.toolset:
|
||||
cmd.append( 'toolset=' + self.toolset )
|
||||
|
||||
Reference in New Issue
Block a user