From patchwork Thu Jul 5 03:33:07 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 10507873 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 6B4B3601EA for ; Thu, 5 Jul 2018 03:33:34 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 5508C289F4 for ; Thu, 5 Jul 2018 03:33:34 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 4693728A47; Thu, 5 Jul 2018 03:33:34 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI, T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A947A289F4 for ; Thu, 5 Jul 2018 03:33:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753054AbeGEDdd (ORCPT ); Wed, 4 Jul 2018 23:33:33 -0400 Received: from conuserg-12.nifty.com ([210.131.2.79]:24208 "EHLO conuserg-12.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753015AbeGEDdc (ORCPT ); Wed, 4 Jul 2018 23:33:32 -0400 Received: from pug.e01.socionext.com (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-12.nifty.com with ESMTP id w653XFC2027618; Thu, 5 Jul 2018 12:33:15 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-12.nifty.com w653XFC2027618 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1530761595; bh=kycmtzOd3HDAYwzBoogmOvRvNV9op4D50v30/qTkts4=; h=From:To:Cc:Subject:Date:From; b=HZyZgMfjyl9l9ckBHBlmP7YgH0e09oCY4qeZrbhkJo6E+e4rYklzMX9h/UZaunVqp Qhole+BqVL2FcVd7Ag7y40fOM0qmDR/AUPnRqQuePEw1xdKS1+ZcFkUAJ7A8VrznX2 +a8X+BaTy+jxdtfk6tJ9HF5pXaJaHj7/NM1zNP5B+PGfr0sILNbmMkUPreicJD4id9 u7DyNN7uGzjeq7OptRLWo1Ss/Di3izGDeu1Tunn2Yfrkr5gItn3eGPoFwFU3wdEsdg 9HRQkwNqnJo2i9ecqVNEaK+5t1oihHUNfU7x8AYgDrtLrjgbz74vBOe9N337mCbw9Y nzEnANnIgcEwg== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Ulf Magnusson , Masahiro Yamada , Michal Marek , linux-kernel@vger.kernel.org Subject: [RESEND PATCH 1/2] Makefile: .PHONY is not a variable, but PHONY is Date: Thu, 5 Jul 2018 12:33:07 +0900 Message-Id: <1530761588-9986-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Ulf Magnusson .PHONY is a target, not a variable. Signed-off-by: Ulf Magnusson Signed-off-by: Masahiro Yamada --- Ulf sent this a long time ago. https://patchwork.kernel.org/patch/7111711/ Unfortunately, it was lost for some reason. I am resending to apply it if Ulf does not mind it. Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 58bd78b..b610cb0 100644 --- a/Makefile +++ b/Makefile @@ -1720,6 +1720,6 @@ endif # skip-makefile PHONY += FORCE FORCE: -# Declare the contents of the .PHONY variable as phony. We keep that +# Declare the contents of the PHONY variable as phony. We keep that # information in a variable so we can use it in if_changed and friends. .PHONY: $(PHONY)