mirror of
https://github.com/qemu/qemu.git
synced 2025-01-19 12:03:51 +08:00
configure: Fix spice probe
Non-existent $pkgconfig instead of $pkg_config was used when configure probes for spice availability. Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
parent
17268d54be
commit
710fc4f5f1
6
configure
vendored
6
configure
vendored
@ -2207,9 +2207,9 @@ if test "$spice" != "no" ; then
|
||||
#include <spice.h>
|
||||
int main(void) { spice_server_new(); return 0; }
|
||||
EOF
|
||||
spice_cflags=$($pkgconfig --cflags spice-protocol spice-server 2>/dev/null)
|
||||
spice_libs=$($pkgconfig --libs spice-protocol spice-server 2>/dev/null)
|
||||
if $pkgconfig --atleast-version=0.5.3 spice-server >/dev/null 2>&1 && \
|
||||
spice_cflags=$($pkg_config --cflags spice-protocol spice-server 2>/dev/null)
|
||||
spice_libs=$($pkg_config --libs spice-protocol spice-server 2>/dev/null)
|
||||
if $pkg_config --atleast-version=0.5.3 spice-server >/dev/null 2>&1 && \
|
||||
compile_prog "$spice_cflags" "$spice_libs" ; then
|
||||
spice="yes"
|
||||
libs_softmmu="$libs_softmmu $spice_libs"
|
||||
|
Loading…
Reference in New Issue
Block a user