Commit 22164971 authored by James Almer's avatar James Almer

Merge commit '286ab878'

* commit '286ab878':
  fate.sh: Allow setting other make flags for running tests
Merged-by: 's avatarJames Almer <jamrial@gmail.com>
parents b20bf558 286ab878
......@@ -26,5 +26,7 @@ extra_conf= # extra configure options not covered above
#make= # name of GNU make if not 'make'
makeopts= # extra options passed to 'make'
#makeopts_fate= # extra options passed to 'make' when running tests,
# defaulting to makeopts above if this is not set
#tar= # command to create a tar archive from its arguments on stdout,
# defaults to 'tar c'
......@@ -75,7 +75,7 @@ compile()(
fate()(
test "$build_only" = "yes" && return
cd ${build} || return
${make} ${makeopts} -k fate
${make} ${makeopts_fate-${makeopts}} -k fate
)
clean(){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment