From: Marc-André Lureau <marcandre.lur...@redhat.com> The qtest-obj-y variable is being used before it's defined, move the variable definition before its use.
Signed-off-by: Marc-André Lureau <marcandre.lur...@redhat.com> --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index 90c4141..c1e3353 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -479,6 +479,7 @@ libqos-omap-obj-y = $(libqos-obj-y) tests/libqos/i2c-omap.o libqos-imx-obj-y = $(libqos-obj-y) tests/libqos/i2c-imx.o libqos-usb-obj-y = $(libqos-pc-obj-y) tests/libqos/usb.o libqos-virtio-obj-y = $(libqos-pc-obj-y) tests/libqos/virtio.o tests/libqos/virtio-pci.o tests/libqos/virtio-mmio.o tests/libqos/malloc-generic.o +qtest-obj-y = tests/libqtest.o $(test-util-obj-y) tests/device-introspect-test$(EXESUF): tests/device-introspect-test.o tests/rtc-test$(EXESUF): tests/rtc-test.o @@ -553,7 +554,6 @@ else QTEST_TARGETS = endif -qtest-obj-y = tests/libqtest.o $(test-util-obj-y) $(check-qtest-y): $(qtest-obj-y) tests/test-qga: tests/test-qga.o $(qtest-obj-y) -- 2.5.0