mirror of https://gitee.com/openkylin/qemu.git
meson: pass qemu_suffix option
The following patches will make use of it to fix installation paths. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Message-Id: <20200826110419.528931-5-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
ca8c0909f0
commit
73f3aa3766
|
@ -8198,6 +8198,7 @@ NINJA=${ninja:-$PWD/ninjatool} $meson setup \
|
|||
--mandir "${pre_prefix}$mandir" \
|
||||
--sysconfdir "${pre_prefix}$sysconfdir" \
|
||||
--localstatedir "${pre_prefix}$local_statedir" \
|
||||
-Dqemu_suffix="$qemu_suffix" \
|
||||
-Doptimization=$(if test "$debug" = yes; then echo 0; else echo 2; fi) \
|
||||
-Ddebug=$(if test "$debug_info" = yes; then echo true; else echo false; fi) \
|
||||
-Dwerror=$(if test "$werror" = yes; then echo true; else echo false; fi) \
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
option('qemu_suffix', type : 'string', value: '/qemu',
|
||||
description: 'Suffix for QEMU data/modules/config directories (can be empty)')
|
||||
option('gettext', type : 'boolean', value : true)
|
||||
option('sdl', type : 'feature', value : 'auto')
|
||||
option('sdl_image', type : 'feature', value : 'auto')
|
||||
|
|
Loading…
Reference in New Issue