From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:56068) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SoEa9-0003kx-4a for qemu-devel@nongnu.org; Mon, 09 Jul 2012 10:05:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SoEa2-0004Zn-Mv for qemu-devel@nongnu.org; Mon, 09 Jul 2012 10:04:56 -0400 Date: Mon, 9 Jul 2012 09:04:29 -0500 From: Scott Wood Message-ID: <20120709140429.GA25506@tyr.buserror.net> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline Subject: [Qemu-devel] [PATCH] PPC: e500: reconditionalize on CONFIG_FDT List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: agraf@suse.de Cc: qemu-ppc@nongnu.org, qemu-devel@nongnu.org Recent patches "PPC: e500: rename mpc8544ds into generic file", "PPC: e500: split mpc8544ds machine from generic e500 code", and "PPC: e500: add generic e500 platform" moved certain e500-related files to the bottom of the makefile because they're now in ppc/, but the dependency on CONFIG_FDT was accidentally dropped. This broke the build when FDT support is not enabled. Signed-off-by: Scott Wood --- hw/ppc/Makefile.objs | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/ppc/Makefile.objs b/hw/ppc/Makefile.objs index 81bcc72..951e407 100644 --- a/hw/ppc/Makefile.objs +++ b/hw/ppc/Makefile.objs @@ -27,4 +27,4 @@ obj-y += xilinx_ethlite.o obj-y := $(addprefix ../,$(obj-y)) -obj-y += e500.o mpc8544ds.o e500plat.o +obj-$(CONFIG_FDT) += e500.o mpc8544ds.o e500plat.o -- 1.7.5.4