Method: Autobuild::Autotools#build
- Defined in:
- lib/autobuild/packages/autotools.rb
#build ⇒ Object
Do the build in builddir
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
# File 'lib/autobuild/packages/autotools.rb', line 318 def build in_dir(builddir) do progress_start "building %s [progress not available]", done_message: 'built %s' do run('build', './config.status') if force_config_status = [] if using_bear? build_tool = tool_program(:bear) = bear_flags << Autobuild.tool(:make) else build_tool = Autobuild.tool(:make) end << "-j#{parallel_build_level}" run('build', build_tool, *) end end Autobuild.touch_stamp(buildstamp) end |