linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] x86: suppress "Nothing to be done for ..." messages
@ 2014-04-09  7:15 Masahiro Yamada
  2014-04-09 14:09 ` Peter Foley
  2014-04-09 14:14 ` Michal Marek
  0 siblings, 2 replies; 4+ messages in thread
From: Masahiro Yamada @ 2014-04-09  7:15 UTC (permalink / raw)
  To: linux-kernel; +Cc: linux-kbuild, Masahiro Yamada

When we compiled again, arch/x86/syscalls/Makefile and
arch/x86/tools/Makefile emitted "Nothing to be done for ..." messages.

Here is the command log:

  $ make defconfig
     [ snip ]
  $ make
     [ snip ]
  $ make
  make[1]: Nothing to be done for `all'.            <-----
  make[1]: Nothing to be done for `relocs'.         <-----
    CHK     include/config/kernel.release
    CHK     include/generated/uapi/linux/version.h

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
---
 arch/x86/syscalls/Makefile | 1 +
 arch/x86/tools/Makefile    | 1 +
 2 files changed, 2 insertions(+)

diff --git a/arch/x86/syscalls/Makefile b/arch/x86/syscalls/Makefile
index f325af2..b6c923a 100644
--- a/arch/x86/syscalls/Makefile
+++ b/arch/x86/syscalls/Makefile
@@ -56,3 +56,4 @@ targets	+= $(uapisyshdr-y) $(syshdr-y)
 
 all: $(addprefix $(uapi)/,$(uapisyshdr-y))
 all: $(addprefix $(out)/,$(syshdr-y))
+	@:
diff --git a/arch/x86/tools/Makefile b/arch/x86/tools/Makefile
index e812034..95e3ed7 100644
--- a/arch/x86/tools/Makefile
+++ b/arch/x86/tools/Makefile
@@ -41,3 +41,4 @@ HOST_EXTRACFLAGS += -I$(srctree)/tools/include
 hostprogs-y	+= relocs
 relocs-objs     := relocs_32.o relocs_64.o relocs_common.o
 relocs: $(obj)/relocs
+	@:
-- 
1.8.3.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] x86: suppress "Nothing to be done for ..." messages
  2014-04-09  7:15 [PATCH] x86: suppress "Nothing to be done for ..." messages Masahiro Yamada
@ 2014-04-09 14:09 ` Peter Foley
  2014-04-09 14:14 ` Michal Marek
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Foley @ 2014-04-09 14:09 UTC (permalink / raw)
  To: Masahiro Yamada; +Cc: linux-kernel, linux-kbuild

On Wed, Apr 9, 2014 at 3:15 AM, Masahiro Yamada
<yamada.m@jp.panasonic.com> wrote:
> When we compiled again, arch/x86/syscalls/Makefile and
> arch/x86/tools/Makefile emitted "Nothing to be done for ..." messages.
>
> Here is the command log:
>
>   $ make defconfig
>      [ snip ]
>   $ make
>      [ snip ]
>   $ make
>   make[1]: Nothing to be done for `all'.            <-----
>   make[1]: Nothing to be done for `relocs'.         <-----
>     CHK     include/config/kernel.release
>     CHK     include/generated/uapi/linux/version.h
>
> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
> ---
>  arch/x86/syscalls/Makefile | 1 +
>  arch/x86/tools/Makefile    | 1 +
>  2 files changed, 2 insertions(+)
>
> diff --git a/arch/x86/syscalls/Makefile b/arch/x86/syscalls/Makefile
> index f325af2..b6c923a 100644
> --- a/arch/x86/syscalls/Makefile
> +++ b/arch/x86/syscalls/Makefile
> @@ -56,3 +56,4 @@ targets       += $(uapisyshdr-y) $(syshdr-y)
>
>  all: $(addprefix $(uapi)/,$(uapisyshdr-y))
>  all: $(addprefix $(out)/,$(syshdr-y))
> +       @:
> diff --git a/arch/x86/tools/Makefile b/arch/x86/tools/Makefile
> index e812034..95e3ed7 100644
> --- a/arch/x86/tools/Makefile
> +++ b/arch/x86/tools/Makefile
> @@ -41,3 +41,4 @@ HOST_EXTRACFLAGS += -I$(srctree)/tools/include
>  hostprogs-y    += relocs
>  relocs-objs     := relocs_32.o relocs_64.o relocs_common.o
>  relocs: $(obj)/relocs
> +       @:
> --
> 1.8.3.2
>
> --

Acked-by: Peter Foley <pefoley2@pefoley.com>

I've an identical patch lying around that I haven't gotten around to
submitting yet.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] x86: suppress "Nothing to be done for ..." messages
  2014-04-09  7:15 [PATCH] x86: suppress "Nothing to be done for ..." messages Masahiro Yamada
  2014-04-09 14:09 ` Peter Foley
@ 2014-04-09 14:14 ` Michal Marek
  2014-04-09 14:25   ` Peter Foley
  1 sibling, 1 reply; 4+ messages in thread
From: Michal Marek @ 2014-04-09 14:14 UTC (permalink / raw)
  To: Masahiro Yamada, linux-kernel; +Cc: linux-kbuild, the arch/x86 maintainers

ccing x86 maintainers

On 2014-04-09 09:15, Masahiro Yamada wrote:
> When we compiled again, arch/x86/syscalls/Makefile and
> arch/x86/tools/Makefile emitted "Nothing to be done for ..." messages.
> 
> Here is the command log:
> 
>   $ make defconfig
>      [ snip ]
>   $ make
>      [ snip ]
>   $ make
>   make[1]: Nothing to be done for `all'.            <-----
>   make[1]: Nothing to be done for `relocs'.         <-----
>     CHK     include/config/kernel.release
>     CHK     include/generated/uapi/linux/version.h
> 
> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
> ---
>  arch/x86/syscalls/Makefile | 1 +
>  arch/x86/tools/Makefile    | 1 +
>  2 files changed, 2 insertions(+)
> 
> diff --git a/arch/x86/syscalls/Makefile b/arch/x86/syscalls/Makefile
> index f325af2..b6c923a 100644
> --- a/arch/x86/syscalls/Makefile
> +++ b/arch/x86/syscalls/Makefile
> @@ -56,3 +56,4 @@ targets	+= $(uapisyshdr-y) $(syshdr-y)
>  
>  all: $(addprefix $(uapi)/,$(uapisyshdr-y))
>  all: $(addprefix $(out)/,$(syshdr-y))
> +	@:

The "all" target should also be added to the PHONY variable.


> diff --git a/arch/x86/tools/Makefile b/arch/x86/tools/Makefile
> index e812034..95e3ed7 100644
> --- a/arch/x86/tools/Makefile
> +++ b/arch/x86/tools/Makefile
> @@ -41,3 +41,4 @@ HOST_EXTRACFLAGS += -I$(srctree)/tools/include
>  hostprogs-y	+= relocs
>  relocs-objs     := relocs_32.o relocs_64.o relocs_common.o
>  relocs: $(obj)/relocs
> +	@:
> 

You can add Acked-by: Michal Marek <mmarek@suse.cz> if you want.

Michal

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] x86: suppress "Nothing to be done for ..." messages
  2014-04-09 14:14 ` Michal Marek
@ 2014-04-09 14:25   ` Peter Foley
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Foley @ 2014-04-09 14:25 UTC (permalink / raw)
  To: Michal Marek
  Cc: Masahiro Yamada, linux-kernel, linux-kbuild, the arch/x86 maintainers

On Wed, Apr 9, 2014 at 10:14 AM, Michal Marek <mmarek@suse.cz> wrote:
> ccing x86 maintainers
>
> On 2014-04-09 09:15, Masahiro Yamada wrote:
>> When we compiled again, arch/x86/syscalls/Makefile and
>> arch/x86/tools/Makefile emitted "Nothing to be done for ..." messages.
>>
>> Here is the command log:
>>
>>   $ make defconfig
>>      [ snip ]
>>   $ make
>>      [ snip ]
>>   $ make
>>   make[1]: Nothing to be done for `all'.            <-----
>>   make[1]: Nothing to be done for `relocs'.         <-----
>>     CHK     include/config/kernel.release
>>     CHK     include/generated/uapi/linux/version.h
>>
>> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
>> ---
>>  arch/x86/syscalls/Makefile | 1 +
>>  arch/x86/tools/Makefile    | 1 +
>>  2 files changed, 2 insertions(+)
>>
>> diff --git a/arch/x86/syscalls/Makefile b/arch/x86/syscalls/Makefile
>> index f325af2..b6c923a 100644
>> --- a/arch/x86/syscalls/Makefile
>> +++ b/arch/x86/syscalls/Makefile
>> @@ -56,3 +56,4 @@ targets     += $(uapisyshdr-y) $(syshdr-y)
>>
>>  all: $(addprefix $(uapi)/,$(uapisyshdr-y))
>>  all: $(addprefix $(out)/,$(syshdr-y))
>> +     @:
>
> The "all" target should also be added to the PHONY variable.

relocs should be PHONY too.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-04-09 14:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-09  7:15 [PATCH] x86: suppress "Nothing to be done for ..." messages Masahiro Yamada
2014-04-09 14:09 ` Peter Foley
2014-04-09 14:14 ` Michal Marek
2014-04-09 14:25   ` Peter Foley

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).