From patchwork Sun Mar 13 00:39:22 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 63765 Delivered-To: patch@linaro.org Received: by 10.112.199.169 with SMTP id jl9csp1790383lbc; Sat, 12 Mar 2016 16:39:48 -0800 (PST) X-Received: by 10.98.11.205 with SMTP id 74mr18935264pfl.98.1457829588522; Sat, 12 Mar 2016 16:39:48 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id rz3si25326576pab.115.2016.03.12.16.39.48; Sat, 12 Mar 2016 16:39:48 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753589AbcCMAjq (ORCPT + 30 others); Sat, 12 Mar 2016 19:39:46 -0500 Received: from conuserg012.nifty.com ([202.248.44.38]:25644 "EHLO conuserg012-v.nifty.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753786AbcCMAjj (ORCPT ); Sat, 12 Mar 2016 19:39:39 -0500 Received: from grover.sesame (FL1-203-136-65-164.osk.mesh.ad.jp [203.136.65.164]) (authenticated) by conuserg012-v.nifty.com with ESMTP id u2D0dRR7023948; Sun, 13 Mar 2016 09:39:32 +0900 X-Nifty-SrcIP: [203.136.65.164] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Masahiro Yamada , Michal Marek , linux-kernel@vger.kernel.org Subject: [PATCH] kbuild: specify modules(_install) as PHONY rather than FORCE Date: Sun, 13 Mar 2016 09:39:22 +0900 Message-Id: <1457829562-31752-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org As in other places, PHONY is a better fit for "modules" and "modules_install". Signed-off-by: Masahiro Yamada --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- 1.9.1 diff --git a/Makefile b/Makefile index e3ef6b6..64cf099 100644 --- a/Makefile +++ b/Makefile @@ -1157,7 +1157,8 @@ else # CONFIG_MODULES # Modules not configured # --------------------------------------------------------------------------- -modules modules_install: FORCE +PHONY += modules modules_install +modules modules_install: @echo >&2 @echo >&2 "The present kernel configuration has modules disabled." @echo >&2 "Type 'make config' and enable loadable module support."