diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2020-09-01 08:06:28 -0400 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-09-08 07:17:09 +0200 |
| commit | e817851479f80622c70566740ac3cf020eb99f27 (patch) | |
| tree | 6f16df98c05e0db025c0e8860fb0b1ef591c11f6 | |
| parent | 58683d07d2590b934cc2688d2b054bfbb7708518 (diff) | |
| download | focaccia-qemu-e817851479f80622c70566740ac3cf020eb99f27.tar.gz focaccia-qemu-e817851479f80622c70566740ac3cf020eb99f27.zip | |
configure: include cross sdl2-config in meson cross file
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
| -rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure index d8f3bf7bfd..4d0724af31 100755 --- a/configure +++ b/configure @@ -8168,6 +8168,9 @@ echo "ar = $(meson_quote $ar)" >> $cross echo "nm = $(meson_quote $nm)" >> $cross echo "pkgconfig = $(meson_quote $pkg_config_exe)" >> $cross echo "ranlib = $(meson_quote $ranlib)" >> $cross +if has $sdl2_config; then + echo "sdl2-config = $(meson_quote $sdl2_config)" >> $cross +fi echo "strip = $(meson_quote $strip)" >> $cross echo "windres = $(meson_quote $windres)" >> $cross if test -n "$cross_prefix"; then |