cmmi: add default value for parameter `make'

'make && make install'

refs #6842
This commit is contained in:
Alexander Klimov 2014-09-11 16:01:31 +02:00
parent a6c7fe21ea
commit ab71049dae
1 changed files with 1 additions and 2 deletions

View File

@ -24,14 +24,13 @@
# output => 'example-software.tar.gz', # output => 'example-software.tar.gz',
# flags => '--prefix=/opt/example-software', # flags => '--prefix=/opt/example-software',
# creates => '/opt/example-software', # creates => '/opt/example-software',
# make => 'make && make install'
# } # }
# #
define cmmi( define cmmi(
$url, $url,
$output, $output,
$creates, $creates,
$make, $make='make && make install',
$flags='', $flags='',
$make_timeout=0, $make_timeout=0,
$configure_command='sh ./configure' $configure_command='sh ./configure'