From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:35185) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SSO7C-0001rB-CM for qemu-devel@nongnu.org; Thu, 10 May 2012 03:48:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SSO74-00043v-7b for qemu-devel@nongnu.org; Thu, 10 May 2012 03:48:45 -0400 Received: from mx1.redhat.com ([209.132.183.28]:13819) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SSO73-00043T-Vj for qemu-devel@nongnu.org; Thu, 10 May 2012 03:48:38 -0400 From: Kevin Wolf Date: Thu, 10 May 2012 09:48:34 +0200 Message-Id: <1336636114-3582-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH] tests/Makefile: Add missing $(EXESUF) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, afaerber@suse.de Signed-off-by: Kevin Wolf --- To be applied on top of the floppy qtest patch. tests/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index a7697bd..20e4da9 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -18,8 +18,8 @@ check-block-$(CONFIG_POSIX) += tests/qemu-iotests-quick.sh # All QTests for now are POSIX-only, but the dependencies are # really in libqtest, not in the testcases themselves. -check-qtest-i386-y = tests/rtc-test -check-qtest-i386-y = tests/fdc-test +check-qtest-i386-y = tests/rtc-test$(EXESUF) +check-qtest-i386-y = tests/fdc-test$(EXESUF) check-qtest-x86_64-y = $(check-qtest-i386-y) check-qtest-sparc-y = tests/m48t59-test$(EXESUF) check-qtest-sparc64-y = tests/m48t59-test$(EXESUF) -- 1.7.6.5