From patchwork Tue Feb 21 10:12:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Fix dependency issue introduced by commit 7b93fadf3a38d1ed65ea5536a52efc2772c6e3b8 Date: Tue, 21 Feb 2012 00:12:39 -0000 From: =?utf-8?b?6Zmz6Z+L5Lu7?= X-Patchwork-Id: 142308 Message-Id: <20120221101239.GA95445@cs.nctu.edu.tw> To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org Commit 7b93fadf3a38d1ed65ea5536a52efc2772c6e3b8 adds basic version of bridge helper, but introduces dependency issue at the same time. While building target xxx-linux-user, qemu-bridge-helper.c needs config-host.h which is not generated at the moment. Building recurse-all target first fixes the problem. Signed-off-by: Chen Wei-Ren --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index e66e885..618b306 100644 --- a/Makefile +++ b/Makefile @@ -79,7 +79,7 @@ defconfig: -include config-all-devices.mak -build-all: $(DOCS) $(TOOLS) $(HELPERS-y) recurse-all +build-all: $(DOCS) $(TOOLS) recurse-all $(HELPERS-y) config-host.h: config-host.h-timestamp config-host.h-timestamp: config-host.mak