mirror of
https://github.com/xemu-project/xemu.git
synced 2025-02-20 04:11:28 +00:00
docker: Print used options before doing configure
This makes the configure command more obvious which usually has useful information. Signed-off-by: Fam Zheng <famz@redhat.com> Message-Id: <1474429768-25027-7-git-send-email-famz@redhat.com> Reviewed-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
3d3a6eb60d
commit
9445c28ec3
@ -23,11 +23,13 @@ requires()
|
||||
|
||||
build_qemu()
|
||||
{
|
||||
$QEMU_SRC/configure \
|
||||
--enable-werror \
|
||||
${TARGET_LIST:+"--target-list=${TARGET_LIST}"} \
|
||||
--prefix="$PWD/install" \
|
||||
$EXTRA_CONFIGURE_OPTS \
|
||||
"$@"
|
||||
config_opts="--enable-werror \
|
||||
${TARGET_LIST:+--target-list=${TARGET_LIST}} \
|
||||
--prefix=$PWD/install \
|
||||
$EXTRA_CONFIGURE_OPTS \
|
||||
$@"
|
||||
echo "Configure options:"
|
||||
echo $config_opts
|
||||
$QEMU_SRC/configure $config_opts
|
||||
make $MAKEFLAGS
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user