From patchwork Wed Sep 2 13:11:19 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulf Magnusson X-Patchwork-Id: 7111711 Return-Path: X-Original-To: patchwork-linux-kbuild@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 20E37BEEC1 for ; Wed, 2 Sep 2015 13:12:10 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 1EF8020649 for ; Wed, 2 Sep 2015 13:12:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 4912D20638 for ; Wed, 2 Sep 2015 13:12:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754542AbbIBNMH (ORCPT ); Wed, 2 Sep 2015 09:12:07 -0400 Received: from mail-la0-f48.google.com ([209.85.215.48]:33982 "EHLO mail-la0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753894AbbIBNMG (ORCPT ); Wed, 2 Sep 2015 09:12:06 -0400 Received: by laeb10 with SMTP id b10so6777042lae.1; Wed, 02 Sep 2015 06:12:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=RID/YN3g1qRPQgY5pIziJp0D4vY7uji5ugYFk84RdH4=; b=yQ2mkXWWZmQftILNxRrzgNThjIvDeJNAR42KZc+Ej/KFBgzGTgIkFdr9lJHz2B3vqD 9tfctAy6quncxRE/oIAepeZKoVHPEiZh0X2gzDPtAZHoS8Kx53p7DDRJ5e2vS5mWm33Z C8JMUkW87od6ZA+cZBfeWeG0ulF7cu6pJIPNRTygLJ2jBpmZjBX4zT7YALsMKHpajnGF UMF58DVNxbxGtEg9i/c67vZohweQnV75Jh4MrzloTxusW9CnpNqt3k5pMF6wXjl/fvqC InHAUmcIJQ+W4Cvj30CHyzIpsMDPd0AXyAxOcR1qpcsU6sAqFpQeOygHmqSdCQ1jKcY3 v8nA== X-Received: by 10.152.37.161 with SMTP id z1mr15683115laj.27.1441199524732; Wed, 02 Sep 2015 06:12:04 -0700 (PDT) Received: from huvuddator.perspektivbredband.net (h59ec3d69.selutin.dyn.perspektivbredband.net. [89.236.61.105]) by smtp.gmail.com with ESMTPSA id i1sm2657106lah.10.2015.09.02.06.12.03 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 02 Sep 2015 06:12:04 -0700 (PDT) From: ulfalizer.lkml@gmail.com To: linux-kbuild@vger.kernel.org Cc: linux-kernel@vger.kernel.org, ulfalizer@gmail.com, mmarek@suse.com, trivial@kernel.org Subject: [PATCH] Makefile: .PHONY is not a variable, but PHONY is Date: Wed, 2 Sep 2015 15:11:19 +0200 Message-Id: <1441199479-12576-1-git-send-email-ulfalizer.lkml@gmail.com> X-Mailer: git-send-email 2.1.4 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Ulf Magnusson .PHONY is a target, not a variable. Signed-off-by: Ulf Magnusson --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 24c9e3d..4835d24 100644 --- a/Makefile +++ b/Makefile @@ -1609,6 +1609,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)