From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41816) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAKUj-0005Tj-Jk for qemu-devel@nongnu.org; Tue, 07 Jun 2016 13:08:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bAKUd-00079s-Fr for qemu-devel@nongnu.org; Tue, 07 Jun 2016 13:08:48 -0400 Received: from mail-wm0-x241.google.com ([2a00:1450:400c:c09::241]:34116) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bAKUd-00079k-94 for qemu-devel@nongnu.org; Tue, 07 Jun 2016 13:08:43 -0400 Received: by mail-wm0-x241.google.com with SMTP id n184so25810116wmn.1 for ; Tue, 07 Jun 2016 10:08:43 -0700 (PDT) Received: from 640k.lan (94-39-188-118.adsl-ull.clienti.tiscali.it. [94.39.188.118]) by smtp.gmail.com with ESMTPSA id o76sm20511305wme.0.2016.06.07.10.08.41 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 07 Jun 2016 10:08:42 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Tue, 7 Jun 2016 19:08:36 +0200 Message-Id: <1465319317-50519-4-git-send-email-pbonzini@redhat.com> In-Reply-To: <1465319317-50519-1-git-send-email-pbonzini@redhat.com> References: <1465319317-50519-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 09/13] Makefile: add dependency on scripts/make_device_config.sh List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Make sure that config-devices.mak is rebuilt whenever there is a change in the scripts that generates it. Reviewed-by: Peter Maydell Signed-off-by: Paolo Bonzini --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 59af636..6406847 100644 --- a/Makefile +++ b/Makefile @@ -117,7 +117,7 @@ endif -include $(SUBDIR_DEVICES_MAK_DEP) -%/config-devices.mak: default-configs/%.mak +%/config-devices.mak: default-configs/%.mak $(SRC_PATH)/scripts/make_device_config.sh $(call quiet-command, \ $(SHELL) $(SRC_PATH)/scripts/make_device_config.sh $< $*-config-devices.mak.d $@ > $@.tmp, " GEN $@.tmp") $(call quiet-command, if test -f $@; then \ -- 1.8.3.1