From patchwork Mon Jan 11 23:58:05 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Rothwell X-Patchwork-Id: 42668 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from bilbo.ozlabs.org (localhost [127.0.0.1]) by ozlabs.org (Postfix) with ESMTP id 97BA8100A22 for ; Tue, 12 Jan 2010 10:58:17 +1100 (EST) Received: from smtps.tip.net.au (chilli.pcug.org.au [203.10.76.44]) by ozlabs.org (Postfix) with ESMTP id F0466B7BEE for ; Tue, 12 Jan 2010 10:58:09 +1100 (EST) Received: from canb.auug.org.au (bh02i525f01.au.ibm.com [202.81.18.30]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtps.tip.net.au (Postfix) with ESMTPSA id 5088C145303; Tue, 12 Jan 2010 10:58:07 +1100 (EST) Date: Tue, 12 Jan 2010 10:58:05 +1100 From: Stephen Rothwell To: Linus Subject: linux-next: origin tree build failure Message-Id: <20100112105805.50e39a77.sfr@canb.auug.org.au> X-Mailer: Sylpheed 3.0.0beta4 (GTK+ 2.18.5; i486-pc-linux-gnu) Mime-Version: 1.0 Cc: linux-kernel@vger.kernel.org, linux-next@vger.kernel.org, Paul Mackerras , Andrew Morton , linuxppc-dev@lists.ozlabs.org X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Errors-To: linuxppc-dev-bounces+patchwork-incoming=ozlabs.org@lists.ozlabs.org Hi all, Today's linux-next build (powerpc ppc64_defconfig) failed like this: cc1: error: include/linux/autoconf.h: No such file or directory (while building the boot wrappers - lots more of the same) Caused by commit ac4c2a3bbe5db5fc570b1d0ee1e474db7cb22585 ("zlib: optimize inffast when copying direct from output"). autoconf.h moved from include/linux to include/generated in commit 264a26838056fc2d759f58bec2e720e01fcb1bdb ("kbuild: move autoconf.h to include/generated") which was in linux-next since 14 Dec 2009 and in Linus' tree since 18 Dec 2009. I added the following patch for today: From: Stephen Rothwell Date: Tue, 12 Jan 2010 10:23:43 +1100 Subject: [PATCH] powerpc: fix boot Makefile for autoconf.h moving autoconf.h moved from include/linux to include/generated Signed-off-by: Stephen Rothwell --- arch/powerpc/boot/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 826a30a..fb32a8e 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile @@ -34,7 +34,7 @@ BOOTCFLAGS += -fno-stack-protector endif BOOTCFLAGS += -I$(obj) -I$(srctree)/$(obj) -BOOTCFLAGS += -include include/linux/autoconf.h -Iarch/powerpc/include +BOOTCFLAGS += -include include/generated/autoconf.h -Iarch/powerpc/include BOOTCFLAGS += -Iinclude DTS_FLAGS ?= -p 1024