Skip to content
Snippets Groups Projects
Commit e4ce964d authored by Alex Bennée's avatar Alex Bennée
Browse files

docker: split configure_qemu from build_qemu


This allows some tests that just want to configure QEMU's source tree
to do so.

Signed-off-by: default avatarAlex Bennée <alex.bennee@linaro.org>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: default avatarPhilippe Mathieu-Daudé <f4bug@amsat.org>
parent 43e1b2ff
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ requires()
done
}
build_qemu()
configure_qemu()
{
config_opts="--enable-werror \
${TARGET_LIST:+--target-list=${TARGET_LIST}} \
......@@ -32,6 +32,11 @@ build_qemu()
echo $config_opts
$QEMU_SRC/configure $config_opts || \
{ cat config.log && test_fail "Failed to run 'configure'"; }
}
build_qemu()
{
configure_qemu $@
make $MAKEFLAGS
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment