From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56003) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZyNVN-0002oi-JI for qemu-devel@nongnu.org; Mon, 16 Nov 2015 12:23:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZyNVI-00082e-NI for qemu-devel@nongnu.org; Mon, 16 Nov 2015 12:23:49 -0500 Received: from mx1.redhat.com ([209.132.183.28]:43265) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZyNVI-00082S-IB for qemu-devel@nongnu.org; Mon, 16 Nov 2015 12:23:44 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 35C2BABB1A for ; Mon, 16 Nov 2015 17:23:44 +0000 (UTC) From: marcandre.lureau@redhat.com Date: Mon, 16 Nov 2015 18:23:36 +0100 Message-Id: <1447694618-17177-1-git-send-email-marcandre.lureau@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 1/3] tests: define qtest-obj-y before using it List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , mst@redhat.com From: Marc-Andr=C3=A9 Lureau The qtest-obj-y variable is being used before it's defined, move the variable definition before its use. Signed-off-by: Marc-Andr=C3=A9 Lureau --- 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 =3D $(libqos-obj-y) tests/libqos/i2= c-omap.o libqos-imx-obj-y =3D $(libqos-obj-y) tests/libqos/i2c-imx.o libqos-usb-obj-y =3D $(libqos-pc-obj-y) tests/libqos/usb.o libqos-virtio-obj-y =3D $(libqos-pc-obj-y) tests/libqos/virtio.o tests/l= ibqos/virtio-pci.o tests/libqos/virtio-mmio.o tests/libqos/malloc-generic= .o +qtest-obj-y =3D tests/libqtest.o $(test-util-obj-y) =20 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 =3D endif =20 -qtest-obj-y =3D tests/libqtest.o $(test-util-obj-y) $(check-qtest-y): $(qtest-obj-y) =20 tests/test-qga: tests/test-qga.o $(qtest-obj-y) --=20 2.5.0