cmmi: disable timeout by default

refs #6842
This commit is contained in:
Alexander Klimov 2014-09-11 16:01:31 +02:00
parent e7fad2c123
commit a6c7fe21ea

View File

@ -25,7 +25,6 @@
# flags => '--prefix=/opt/example-software', # flags => '--prefix=/opt/example-software',
# creates => '/opt/example-software', # creates => '/opt/example-software',
# make => 'make && make install' # make => 'make && make install'
# make_timeout => 600
# } # }
# #
define cmmi( define cmmi(
@ -34,7 +33,7 @@ define cmmi(
$creates, $creates,
$make, $make,
$flags='', $flags='',
$make_timeout=300, $make_timeout=0,
$configure_command='sh ./configure' $configure_command='sh ./configure'
) { ) {