}
# Similar to "parse_config", but parses a project configuration section. If the
-# project is found, the following variables are defined: cfg_name. cfg_descr,
-# cfg_path, cfg_configs, cfg_branch, cfg_reply_to_all, cfg_accept_notify,
-# cfg_always_cc, cfg_unwanted_keywords. If the project is not found, this
-# function only defined an empty "cfg_name" variable.
+# project is found, the following variables are defined:
+#
+# cfg_name. cfg_descr, cfg_path, cfg_configs, cfg_branch, cfg_reply_to_all,
+# cfg_accept_notify, cfg_always_cc, cfg_unwanted_keywords, and
+# cfg_make_options.
+#
+# If the project is not found, this function only defined an empty "cfg_name"
+# variable.
#
# Usage: parse_prj_config <cfgfile> <prj>
parse_prj_config()
cfg_always_cc="$(ini_config_get "$cfgfile" "prj_$prj" "always_cc")"
cfg_unwanted_keywords="$(ini_config_get "$cfgfile" ""prj_$prj"" "unwanted_keywords")"
+ cfg_make_options="$(ini_config_get "$cfgfile" "prj_$prj" "make_options")"
}
# Compose (but not send) e-mail reply. This function assumes that the following
-i "$mbox" -j "$cfg_jobs" -c "$cfg_branch" -w "$tmpdir" \
${confdir:+-C "$confdir"} \
${cfg_unwanted_keywords:+-K "$cfg_unwanted_keywords"} -- \
+ ${cfg_make_options:+-M "$cfg_make_options"} \
"$cfg_path" "$cfg_configs" > "$tmpdir/test-patchset.log" ||
{
verbose "aiaiai-test-patchset failed"