From patchwork Tue Mar 15 06:34:25 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Waychison X-Patchwork-Id: 635121 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p2F6YVNM021596 for ; Tue, 15 Mar 2011 06:34:32 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753265Ab1COGeb (ORCPT ); Tue, 15 Mar 2011 02:34:31 -0400 Received: from smtp-out.google.com ([216.239.44.51]:42676 "EHLO smtp-out.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750986Ab1COGe3 (ORCPT ); Tue, 15 Mar 2011 02:34:29 -0400 Received: from wpaz5.hot.corp.google.com (wpaz5.hot.corp.google.com [172.24.198.69]) by smtp-out.google.com with ESMTP id p2F6YQe1016858; Mon, 14 Mar 2011 23:34:26 -0700 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=google.com; s=beta; t=1300170866; bh=i1M1WkLrS1rxuCXypqDu7eY1EJU=; h=Subject:To:From:Cc:Date:Message-ID:MIME-Version:Content-Type: Content-Transfer-Encoding; b=eNpVwTrvUV8wFCUoJJyEMS3QVxY/1hr5ZBUkjLiz4jC0iM6k+jwu0N3M5gp+cp1+9 AlgsKzv2TTqe2h/C2TE7g== DomainKey-Signature: a=rsa-sha1; s=beta; d=google.com; c=nofws; q=dns; h=subject:to:from:cc:date:message-id:user-agent: mime-version:content-type:content-transfer-encoding:x-system-of-record; b=odJPH44AIuO7O3p4zxZAyMNsYe31jCkAXEPbNPVO2c7WRGYGXTDDvQDqV4x9LF/G0 969qj36KrCuZUPfbm5kSA== Received: from mike.mtv.corp.google.com (mike.mtv.corp.google.com [172.22.65.71]) by wpaz5.hot.corp.google.com with ESMTP id p2F6YPPx005887; Mon, 14 Mar 2011 23:34:25 -0700 Received: from mike.mtv.corp.google.com (unknown [IPv6:::1]) by mike.mtv.corp.google.com (Postfix) with ESMTP id 70BA51600D2; Mon, 14 Mar 2011 23:34:25 -0700 (PDT) Subject: [PATCH] KBuild: silence "'scripts/unifdef' is up to date." To: Michal Marek From: Mike Waychison Cc: linux-kernel@vger.kernel.org, linux-kbuild@vger.kernel.org Date: Mon, 14 Mar 2011 23:34:25 -0700 Message-ID: <20110315063425.9538.11565.stgit@mike.mtv.corp.google.com> User-Agent: StGit/0.15 MIME-Version: 1.0 X-System-Of-Record: true Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Tue, 15 Mar 2011 06:34:52 +0000 (UTC) diff --git a/Makefile b/Makefile index 504f788..5d7e0b2 100644 --- a/Makefile +++ b/Makefile @@ -1018,7 +1018,7 @@ hdr-dst = $(if $(KBUILD_HEADERS), dst=include/asm-$(hdr-arch), dst=include/asm) PHONY += __headers __headers: include/linux/version.h scripts_basic FORCE - $(Q)$(MAKE) $(build)=scripts scripts/unifdef + $(Q)$(MAKE) $(build)=scripts build_unifdef PHONY += headers_install_all headers_install_all: diff --git a/scripts/Makefile b/scripts/Makefile index 2e08810..fcea261 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -18,6 +18,11 @@ always := $(hostprogs-y) $(hostprogs-m) # The following hostprogs-y programs are only build on demand hostprogs-y += unifdef +# This target is used internally to avoid "is up to date" messages +PHONY += build_unifdef +build_unifdef: scripts/unifdef FORCE + @: + subdir-$(CONFIG_MODVERSIONS) += genksyms subdir-y += mod subdir-$(CONFIG_SECURITY_SELINUX) += selinux