All of lore.kernel.org
 help / color / mirror / Atom feed
From: Masahiro Yamada <yamada.masahiro@socionext.com>
To: linux-arm-kernel@lists.infradead.org
Cc: Russell King <rmk+kernel@arm.linux.org.uk>,
	Arnd Bergmann <arnd@arndb.de>, Olof Johansson <olof@lixom.net>,
	Michal Marek <mmarek@suse.cz>,
	linux-kbuild@vger.kernel.org,
	Masahiro Yamada <yamada.masahiro@socionext.com>,
	Magnus Damm <damm+renesas@opensource.se>,
	Kees Cook <keescook@chromium.org>,
	linux-kernel@vger.kernel.org, Roy Franz <roy.franz@linaro.org>,
	Russell King <linux@arm.linux.org.uk>,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Simon Horman <horms+renesas@verge.net.au>
Subject: [PATCH 4/6] ARM: decompressor: drop redundant FORCE in Makefile
Date: Mon, 22 Feb 2016 16:31:15 +0900	[thread overview]
Message-ID: <1456126277-14633-5-git-send-email-yamada.masahiro@socionext.com> (raw)
In-Reply-To: <1456126277-14633-1-git-send-email-yamada.masahiro@socionext.com>

The object "piggy.$(suffix_y).o" is created from "piggy.$(suffix).S"
by the following pattern rule defined in scripts/Makefile.build:

  $(obj)/%.o: $(src)/%.S FORCE
          $(call if_changed_dep,as_o_S)

FORCE is already added to the prerequisite of the object there.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 arch/arm/boot/compressed/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile
index f9e8e68..903b953 100644
--- a/arch/arm/boot/compressed/Makefile
+++ b/arch/arm/boot/compressed/Makefile
@@ -187,7 +187,7 @@ $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \
 $(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE
 	$(call if_changed,$(suffix_y))
 
-$(obj)/piggy.$(suffix_y).o:  $(obj)/piggy.$(suffix_y) FORCE
+$(obj)/piggy.$(suffix_y).o:  $(obj)/piggy.$(suffix_y)
 
 CFLAGS_font.o := -Dstatic=
 
-- 
1.9.1

WARNING: multiple messages have this Message-ID (diff)
From: yamada.masahiro@socionext.com (Masahiro Yamada)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 4/6] ARM: decompressor: drop redundant FORCE in Makefile
Date: Mon, 22 Feb 2016 16:31:15 +0900	[thread overview]
Message-ID: <1456126277-14633-5-git-send-email-yamada.masahiro@socionext.com> (raw)
In-Reply-To: <1456126277-14633-1-git-send-email-yamada.masahiro@socionext.com>

The object "piggy.$(suffix_y).o" is created from "piggy.$(suffix).S"
by the following pattern rule defined in scripts/Makefile.build:

  $(obj)/%.o: $(src)/%.S FORCE
          $(call if_changed_dep,as_o_S)

FORCE is already added to the prerequisite of the object there.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 arch/arm/boot/compressed/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/boot/compressed/Makefile b/arch/arm/boot/compressed/Makefile
index f9e8e68..903b953 100644
--- a/arch/arm/boot/compressed/Makefile
+++ b/arch/arm/boot/compressed/Makefile
@@ -187,7 +187,7 @@ $(obj)/vmlinux: $(obj)/vmlinux.lds $(obj)/$(HEAD) $(obj)/piggy.$(suffix_y).o \
 $(obj)/piggy.$(suffix_y): $(obj)/../Image FORCE
 	$(call if_changed,$(suffix_y))
 
-$(obj)/piggy.$(suffix_y).o:  $(obj)/piggy.$(suffix_y) FORCE
+$(obj)/piggy.$(suffix_y).o:  $(obj)/piggy.$(suffix_y)
 
 CFLAGS_font.o := -Dstatic=
 
-- 
1.9.1

  parent reply	other threads:[~2016-02-22  7:32 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-02-22  7:31 [PATCH 0/6] ARM: decompressor: several cleanups Masahiro Yamada
2016-02-22  7:31 ` Masahiro Yamada
2016-02-22  7:31 ` [PATCH 1/6] ARM: decompressor: drop unneeded assignments to "targets" Masahiro Yamada
2016-02-22  7:31   ` Masahiro Yamada
2016-02-22  7:31 ` [PATCH 2/6] ARM: decompressor: drop more " Masahiro Yamada
2016-02-22  7:31   ` Masahiro Yamada
2016-02-22  7:31 ` [PATCH 3/6] ARM: decompressor: use clean-files instead of extra-y to clean files Masahiro Yamada
2016-02-22  7:31   ` Masahiro Yamada
2016-02-22  7:31 ` Masahiro Yamada [this message]
2016-02-22  7:31   ` [PATCH 4/6] ARM: decompressor: drop redundant FORCE in Makefile Masahiro Yamada
2016-02-22  7:31 ` [PATCH 5/6] ARM: decompressor: merge piggy.*.S and simplify Makefile Masahiro Yamada
2016-02-22  7:31   ` Masahiro Yamada
2016-02-22  7:31 ` [PATCH 6/6] ARM: decompressor: rename suffix_y to compress-y Masahiro Yamada
2016-02-22  7:31   ` Masahiro Yamada
2016-02-22 11:36 ` [PATCH 0/6] ARM: decompressor: several cleanups Russell King - ARM Linux
2016-02-22 11:36   ` Russell King - ARM Linux
2016-02-22 12:08   ` Masahiro Yamada
2016-02-22 12:08     ` Masahiro Yamada
2016-02-22 12:18     ` Russell King - ARM Linux
2016-02-22 12:18       ` Russell King - ARM Linux
2016-02-22 12:33       ` Masahiro Yamada
2016-02-22 12:33         ` Masahiro Yamada

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1456126277-14633-5-git-send-email-yamada.masahiro@socionext.com \
    --to=yamada.masahiro@socionext.com \
    --cc=arnd@arndb.de \
    --cc=damm+renesas@opensource.se \
    --cc=geert+renesas@glider.be \
    --cc=horms+renesas@verge.net.au \
    --cc=keescook@chromium.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=mmarek@suse.cz \
    --cc=olof@lixom.net \
    --cc=rmk+kernel@arm.linux.org.uk \
    --cc=roy.franz@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.