From patchwork Sat May 4 14:32:53 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 2520691 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 26F55DF25A for ; Sat, 4 May 2013 14:33:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759639Ab3EDOdB (ORCPT ); Sat, 4 May 2013 10:33:01 -0400 Received: from mail-out.m-online.net ([212.18.0.9]:40288 "EHLO mail-out.m-online.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759622Ab3EDOdA (ORCPT ); Sat, 4 May 2013 10:33:00 -0400 Received: from frontend1.mail.m-online.net (unknown [192.168.8.180]) by mail-out.m-online.net (Postfix) with ESMTP id 3b2t3W6BSQz4KK5t; Sat, 4 May 2013 16:32:55 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.68]) by mail.m-online.net (Postfix) with ESMTP id 3b2t3W4WRwzbbkt; Sat, 4 May 2013 16:32:55 +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 SPg8uxYc8rhx; Sat, 4 May 2013 16:32:54 +0200 (CEST) X-Auth-Info: /ExQ2BElR/xRcEHMD2YyrEWp++lKabF4SIowyP5q/5M= Received: from hase.home (ppp-88-217-125-90.dynamic.mnet-online.de [88.217.125.90]) by mail.mnet-online.de (Postfix) with ESMTPA; Sat, 4 May 2013 16:32:54 +0200 (CEST) Received: by hase.home (Postfix, from userid 1000) id 9346B1059BF; Sat, 4 May 2013 16:32:53 +0200 (CEST) From: Andreas Schwab To: Geert Uytterhoeven Cc: Dave Hansen , "Winkler\, Tomas" , Greg Kroah-Hartman , "SamuelOrtiz\@kroah.com" , LKML , linux-kbuild Subject: [PATCH] Fix cleaning in scripts/mod References: <51814943.7000604@intel.com> <20130501182138.GA17550@kroah.com> <5B8DA87D05A7694D9FA63FD143655C1B01F18E66@HASMSX106.ger.corp.intel.com> <518284E6.7040503@intel.com> X-Yow: Should I start with the time I SWITCHED personalities with a BEATNIK hair stylist or my failure to refer five TEENAGERS to a good OCULIST? Date: Sat, 04 May 2013 16:32:53 +0200 In-Reply-To: (Geert Uytterhoeven's message of "Fri, 3 May 2013 13:34:50 +0200") Message-ID: <87sj22zuga.fsf_-_@hase.home> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org Make sure devicetable-offsets.h is cleaned in the scripts/mod directory Signed-off-by: Andreas Schwab Tested-by: Geert Uytterhoeven --- scripts/mod/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/mod/Makefile b/scripts/mod/Makefile index 9415b56..75d59fc 100644 --- a/scripts/mod/Makefile +++ b/scripts/mod/Makefile @@ -37,6 +37,8 @@ scripts/mod/devicetable-offsets.s: scripts/mod/devicetable-offsets.c FORCE $(obj)/$(devicetable-offsets-file): scripts/mod/devicetable-offsets.s $(call cmd,offsets) +targets += $(devicetable-offsets-file) + # dependencies on generated files need to be listed explicitly $(obj)/modpost.o $(obj)/file2alias.o $(obj)/sumversion.o: $(obj)/elfconfig.h