Make ci_boost_build.py install Boost in addition to building it

This commit is contained in:
Peter Dimov
2018-12-14 00:42:36 +02:00
parent 5e6ee34810
commit cd9926521f

View File

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