From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:39053) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qz9PV-00082X-Ol for qemu-devel@nongnu.org; Thu, 01 Sep 2011 11:42:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qz9PL-0005s0-W5 for qemu-devel@nongnu.org; Thu, 01 Sep 2011 11:42:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:18257) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qz9PL-0005rX-Kf for qemu-devel@nongnu.org; Thu, 01 Sep 2011 11:42:23 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p81FgMUZ015418 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 1 Sep 2011 11:42:22 -0400 From: Gerd Hoffmann Date: Thu, 1 Sep 2011 17:42:17 +0200 Message-Id: <1314891739-1881-3-git-send-email-kraxel@redhat.com> In-Reply-To: <1314891739-1881-1-git-send-email-kraxel@redhat.com> References: <1314891739-1881-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 2/4] move checks to separate variable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Create a new CHECKS variable. Put the checks there instead of adding them to the TOOLS variable. Signed-off-by: Gerd Hoffmann --- Makefile | 4 ++-- configure | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 8606849..2963c8b 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ defconfig: -include config-all-devices.mak -build-all: $(DOCS) $(TOOLS) recurse-all +build-all: $(DOCS) $(TOOLS) $(CHECKS) recurse-all config-host.h: config-host.h-timestamp config-host.h-timestamp: config-host.mak @@ -205,7 +205,7 @@ clean: # avoid old build problems by removing potentially incorrect old files rm -f config.mak op-i386.h opc-i386.h gen-op-i386.h op-arm.h opc-arm.h gen-op-arm.h rm -f qemu-options.def - rm -f *.o *.d *.a *.lo $(TOOLS) qemu-ga TAGS cscope.* *.pod *~ */*~ + rm -f *.o *.d *.a *.lo $(TOOLS) $(CHECKS) qemu-ga TAGS cscope.* *.pod *~ */*~ rm -Rf .libs rm -f slirp/*.o slirp/*.d audio/*.o audio/*.d block/*.o block/*.d net/*.o net/*.d fsdev/*.o fsdev/*.d ui/*.o ui/*.d qapi/*.o qapi/*.d qga/*.o qga/*.d rm -f qemu-img-cmds.h diff --git a/configure b/configure index 920de9e..44b3295 100755 --- a/configure +++ b/configure @@ -2630,8 +2630,8 @@ if test "$softmmu" = yes ; then tools="qemu-ga\$(EXESUF) $tools" fi if [ "$check_utests" = "yes" ]; then - tools="check-qint check-qstring check-qdict check-qlist $tools" - tools="check-qfloat check-qjson $tools" + checks="check-qint check-qstring check-qdict check-qlist" + checks="check-qfloat check-qjson $checks" fi fi fi @@ -3078,6 +3078,7 @@ fi echo "CONFIG_TRACE_FILE=$trace_file" >> $config_host_mak echo "TOOLS=$tools" >> $config_host_mak +echo "CHECKS=$checks" >> $config_host_mak echo "ROMS=$roms" >> $config_host_mak echo "MAKE=$make" >> $config_host_mak echo "INSTALL=$install" >> $config_host_mak -- 1.7.1