diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2014-10-02 10:03:55 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2014-10-15 12:20:27 +0200 |
commit | 50e12060696711eca1b09b82b9215ccdeaadfd09 (patch) | |
tree | d9ae3a87d1cbf4cea1eb6b710aa509febfe26995 /configure | |
parent | b1d28ec6a7dbdaadda39d29322f0de694aeb0b74 (diff) | |
download | hqemu-50e12060696711eca1b09b82b9215ccdeaadfd09.zip hqemu-50e12060696711eca1b09b82b9215ccdeaadfd09.tar.gz |
configure: Prepend pixman and ftd flags to overrule system-provided ones
Other packages may provide includes for pixman as well if the host has a
devel package installed. So add ours to the front to unsure that the
right version is used.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4211,9 +4211,9 @@ EOF fi fi -# add pixman flags after all config tests are done -QEMU_CFLAGS="$QEMU_CFLAGS $pixman_cflags $fdt_cflags" -libs_softmmu="$libs_softmmu $pixman_libs" +# prepend pixman and ftd flags after all config tests are done +QEMU_CFLAGS="$pixman_cflags $fdt_cflags $QEMU_CFLAGS" +libs_softmmu="$pixman_libs $libs_softmmu" echo "Install prefix $prefix" echo "BIOS directory `eval echo $qemu_datadir`" |