From patchwork Thu Mar 31 16:43:01 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 64803 Delivered-To: patch@linaro.org Received: by 10.112.199.169 with SMTP id jl9csp263094lbc; Thu, 31 Mar 2016 09:45:08 -0700 (PDT) X-Received: by 10.98.89.129 with SMTP id k1mr23559085pfj.66.1459442708458; Thu, 31 Mar 2016 09:45:08 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id xv6si550184pab.1.2016.03.31.09.45.08; Thu, 31 Mar 2016 09:45:08 -0700 (PDT) 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; dkim=pass header.i=@nifty.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 S1757598AbcCaQo5 (ORCPT + 29 others); Thu, 31 Mar 2016 12:44:57 -0400 Received: from conuserg-07.nifty.com ([210.131.2.74]:34702 "EHLO conuserg-07.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756946AbcCaQoz (ORCPT ); Thu, 31 Mar 2016 12:44:55 -0400 Received: from grover.sesame (FL1-203-136-65-164.osk.mesh.ad.jp [203.136.65.164]) (authenticated) by conuserg-07.nifty.com with ESMTP id u2VGhBsG020666; Fri, 1 Apr 2016 01:43:17 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-07.nifty.com u2VGhBsG020666 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1459442598; bh=TZ/dIu+6PtIBiE41wSnbLQI+1zOEiFFHcy3X5CSllGI=; h=From:To:Cc:Subject:Date:From; b=R8Pwv8JhlY68XovuAPfoak9lR5Xm8KVwmS6uzgCfbaDA6SkUcqs1ddYYIr8obQUhm ECJZeotwY8YHUj9ycHxeYbB6mv742h+lp2TXe9nwArV/QPdHao+L0cSO0UmJm/I0r/ OTorOoL+EDOnITekjKgxVIt0CU7+ttzh926ONU7KKuY5E4MR1IWss/lQ1lkwrkMe52 kSbAnM67VPyi96vz7yC3UoXZ/u6iUGjO6XzKXem94/V50Q8N69GkRMNes3b6wFT3mA GVdF4ia/Hq+P/+KLqWEN63kbozlPzMdXZKI9FzNTItojKOcupJR2MTw8MiYmL+x4EC 8ePNIq+eRvYEw== X-Nifty-SrcIP: [203.136.65.164] From: Masahiro Yamada To: linux-arm-kernel@lists.infradead.org Cc: Masahiro Yamada , Russell King , linux-kernel@vger.kernel.org, Michal Marek Subject: [PATCH 1/2] ARM: specify install, zinstall, uinstall as PHONY targets Date: Fri, 1 Apr 2016 01:43:01 +0900 Message-Id: <1459442582-23121-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 Obviously, These are PHONY targets. Signed-off-by: Masahiro Yamada --- arch/arm/boot/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.9.1 diff --git a/arch/arm/boot/Makefile b/arch/arm/boot/Makefile index 48fab15..446705a 100644 --- a/arch/arm/boot/Makefile +++ b/arch/arm/boot/Makefile @@ -88,7 +88,7 @@ $(obj)/bootpImage: $(obj)/bootp/bootp FORCE $(call if_changed,objcopy) @$(kecho) ' Kernel: $@ is ready' -PHONY += initrd +PHONY += initrd install zinstall uinstall initrd: @test "$(INITRD_PHYS)" != "" || \ (echo This machine does not support INITRD; exit -1)