diff options
author | Bruce Rogers | 2020-11-03 15:51:21 +0100 |
---|---|---|
committer | Paolo Bonzini | 2020-11-03 16:15:43 +0100 |
commit | 3569a5dfc11f2c4880b7cddd9e0091b29aa0e015 (patch) | |
tree | 3d9500c91dea9967ee46d637c8c57c72a252661d | |
parent | meson: fix warning for bad sphinx-build (diff) | |
download | qemu-3569a5dfc11f2c4880b7cddd9e0091b29aa0e015.tar.gz qemu-3569a5dfc11f2c4880b7cddd9e0091b29aa0e015.tar.xz qemu-3569a5dfc11f2c4880b7cddd9e0091b29aa0e015.zip |
configure: fix gio_libs reference
The gio library detection code no longer works, due to a missing $ in
front of the gio_libs reference. Make the string be $gio_libs.
Fixes: 76346b6264a ("configure: Test that gio libs from pkg-config
work")
Signed-off-by: Bruce Rogers <brogers@suse.com>
Message-Id: <20201103145121.668865-1-brogers@suse.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3499,7 +3499,7 @@ if $pkg_config --atleast-version=$glib_req_ver gio-2.0; then # with pkg-config --static --libs data for gio-2.0 that is missing # -lblkid and will give a link error. write_c_skeleton - if compile_prog "" "gio_libs" ; then + if compile_prog "" "$gio_libs" ; then gio=yes else gio=no |