From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:60071) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SSRsz-0002Y0-GF for qemu-devel@nongnu.org; Thu, 10 May 2012 07:50:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SSRss-0006XB-Cc for qemu-devel@nongnu.org; Thu, 10 May 2012 07:50:21 -0400 Received: from mx1.redhat.com ([209.132.183.28]:54579) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SSRss-0006Wd-58 for qemu-devel@nongnu.org; Thu, 10 May 2012 07:50:14 -0400 From: Kevin Wolf Date: Thu, 10 May 2012 13:49:33 +0200 Message-Id: <1336650574-12835-30-git-send-email-kwolf@redhat.com> In-Reply-To: <1336650574-12835-1-git-send-email-kwolf@redhat.com> References: <1336650574-12835-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 29/30] tests/Makefile: Add missing $(EXESUF) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org Signed-off-by: Kevin Wolf --- 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