From patchwork Tue Apr 9 17:57:00 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 2416331 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from casper.infradead.org (casper.infradead.org [85.118.1.10]) by patchwork1.kernel.org (Postfix) with ESMTP id 957343FD8C for ; Tue, 9 Apr 2013 17:57:16 +0000 (UTC) Received: from merlin.infradead.org ([205.233.59.134]) by casper.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UPcnC-0004xf-9w; Tue, 09 Apr 2013 17:57:14 +0000 Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1UPcnA-0000ri-D5; Tue, 09 Apr 2013 17:57:12 +0000 Received: from mail-out.m-online.net ([212.18.0.9]) by merlin.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1UPcn6-0000rE-6Q for linux-arm-kernel@lists.infradead.org; Tue, 09 Apr 2013 17:57:09 +0000 Received: from frontend1.mail.m-online.net (unknown [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 3ZlbmZ0rGzz4KK6C; Tue, 9 Apr 2013 19:57:02 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3ZlbmZ0ZcFzbbts; Tue, 9 Apr 2013 19:57:02 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.180]) by localhost (dynscan1.mail.m-online.net [192.168.6.68]) (amavisd-new, port 10024) with ESMTP id iIOiqtyF4j7k; Tue, 9 Apr 2013 19:57:00 +0200 (CEST) X-Auth-Info: GX71fDZOQ0xPmrKWTJvEX98kt551gMvMnHTfmE9ZlM4= Received: from igel.home (ppp-93-104-151-140.dynamic.mnet-online.de [93.104.151.140]) by mail.mnet-online.de (Postfix) with ESMTPA; Tue, 9 Apr 2013 19:57:00 +0200 (CEST) Received: by igel.home (Postfix, from userid 501) id 5E5C3CA2B4; Tue, 9 Apr 2013 19:57:00 +0200 (CEST) From: Andreas Schwab To: Prabhakar Lad Subject: [PATCH] kbuild: generate generic headers before recursing into scripts References: <1363949290.3528.37.camel@linaro1.home> X-Yow: What's the MATTER Sid?.. Is your BEVERAGE unsatisfactory? Date: Tue, 09 Apr 2013 19:57:00 +0200 In-Reply-To: (Prabhakar Lad's message of "Tue, 9 Apr 2013 17:44:47 +0530") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20130409_135708_360022_7861B6EC X-CRM114-Status: GOOD ( 12.31 ) X-Spam-Score: -1.9 (-) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-1.9 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at http://www.dnswl.org/, no trust [212.18.0.9 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: "Jon Medhurst \(Tixy\)" , Michal Marek , linux-kernel@vger.kernel.org, LAK X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org The headers are now needed inside scripts/mod since 6543bec ("mod/file2alias: make modalias generation safe for cross compiling"). Signed-off-by: Andreas Schwab Reported-by: Lad, Prabhakar Tested-by: Lad, Prabhakar --- Prabhakar Lad writes: > Whats the status of it ? I think it has sufficiently been tested by now. Andreas. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6db672b..11157bd 100644 --- a/Makefile +++ b/Makefile @@ -513,7 +513,8 @@ ifeq ($(KBUILD_EXTMOD),) # Carefully list dependencies so we do not try to build scripts twice # in parallel PHONY += scripts -scripts: scripts_basic include/config/auto.conf include/config/tristate.conf +scripts: scripts_basic include/config/auto.conf include/config/tristate.conf \ + asm-generic $(Q)$(MAKE) $(build)=$(@) # Objects we will link into vmlinux / subdirs we need to visit