mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] traceevent: make clean fix
@ 2012-06-27 21:52 Konstantin Stepanyuk
  2012-06-27 22:14 ` Steven Rostedt
  2012-07-06 10:50 ` [tip:perf/core] tools lib traceevent: Fix clean target in Makefile tip-bot for Konstantin Stepanyuk
  0 siblings, 2 replies; 3+ messages in thread
From: Konstantin Stepanyuk @ 2012-06-27 21:52 UTC (permalink / raw)
  To: linux-kernel; +Cc: Steven Rostedt, Frederic Weisbecker, Konstantin Stepanyuk

Dependency files were not cleaned up. Add missing space to fix the
issue.

Signed-off-by: Konstantin Stepanyuk <konstantin.stepanyuk@gmail.com>
---
 tools/lib/traceevent/Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/lib/traceevent/Makefile b/tools/lib/traceevent/Makefile
index 3d69aa9..423f4b8 100644
--- a/tools/lib/traceevent/Makefile
+++ b/tools/lib/traceevent/Makefile
@@ -290,7 +290,7 @@ install_lib: all_cmd install_plugins install_python
 install: install_lib
 
 clean:
-	$(RM) *.o *~ $(TARGETS) *.a *.so $(VERSION_FILES).*.d
+	$(RM) *.o *~ $(TARGETS) *.a *.so $(VERSION_FILES) .*.d
 	$(RM) tags TAGS
 
 endif # skip-makefile
-- 
1.7.10


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

* Re: [PATCH] traceevent: make clean fix
  2012-06-27 21:52 [PATCH] traceevent: make clean fix Konstantin Stepanyuk
@ 2012-06-27 22:14 ` Steven Rostedt
  2012-07-06 10:50 ` [tip:perf/core] tools lib traceevent: Fix clean target in Makefile tip-bot for Konstantin Stepanyuk
  1 sibling, 0 replies; 3+ messages in thread
From: Steven Rostedt @ 2012-06-27 22:14 UTC (permalink / raw)
  To: Konstantin Stepanyuk; +Cc: linux-kernel, Frederic Weisbecker

Except, that the subject line needs to be a little better. Perhaps:

tools lib traceevent: Fix clean target in Makefile

As "make clean fix" sounds like we are making a clean fix. Which I hope
all fixes would be ;-)

Acked-by: Steven Rostedt <rostedt@goodmis.org>

-- Steve


On Wed, 2012-06-27 at 15:52 -0600, Konstantin Stepanyuk wrote:
> Dependency files were not cleaned up. Add missing space to fix the
> issue.
> 
> Signed-off-by: Konstantin Stepanyuk <konstantin.stepanyuk@gmail.com>
> ---
>  tools/lib/traceevent/Makefile |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tools/lib/traceevent/Makefile b/tools/lib/traceevent/Makefile
> index 3d69aa9..423f4b8 100644
> --- a/tools/lib/traceevent/Makefile
> +++ b/tools/lib/traceevent/Makefile
> @@ -290,7 +290,7 @@ install_lib: all_cmd install_plugins install_python
>  install: install_lib
>  
>  clean:
> -	$(RM) *.o *~ $(TARGETS) *.a *.so $(VERSION_FILES).*.d
> +	$(RM) *.o *~ $(TARGETS) *.a *.so $(VERSION_FILES) .*.d
>  	$(RM) tags TAGS
>  
>  endif # skip-makefile



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

* [tip:perf/core] tools lib traceevent: Fix clean target in Makefile
  2012-06-27 21:52 [PATCH] traceevent: make clean fix Konstantin Stepanyuk
  2012-06-27 22:14 ` Steven Rostedt
@ 2012-07-06 10:50 ` tip-bot for Konstantin Stepanyuk
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Konstantin Stepanyuk @ 2012-07-06 10:50 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: acme, linux-kernel, hpa, mingo, fweisbec, rostedt, tglx,
	konstantin.stepanyuk

Commit-ID:  f526a4ce2643e2636c091cf2bf0ec1442110c5b7
Gitweb:     http://git.kernel.org/tip/f526a4ce2643e2636c091cf2bf0ec1442110c5b7
Author:     Konstantin Stepanyuk <konstantin.stepanyuk@gmail.com>
AuthorDate: Wed, 27 Jun 2012 15:52:14 -0600
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Fri, 29 Jun 2012 13:28:11 -0300

tools lib traceevent: Fix clean target in Makefile

Dependency files were not cleaned up. Add missing space to fix the issue.

Signed-off-by: Konstantin Stepanyuk <konstantin.stepanyuk@gmail.com>
Acked-by: Steven Rostedt <rostedt@goodmis.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/1340833934-18783-1-git-send-email-konstantin.stepanyuk@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/lib/traceevent/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/lib/traceevent/Makefile b/tools/lib/traceevent/Makefile
index 3d69aa9..423f4b8 100644
--- a/tools/lib/traceevent/Makefile
+++ b/tools/lib/traceevent/Makefile
@@ -290,7 +290,7 @@ install_lib: all_cmd install_plugins install_python
 install: install_lib
 
 clean:
-	$(RM) *.o *~ $(TARGETS) *.a *.so $(VERSION_FILES).*.d
+	$(RM) *.o *~ $(TARGETS) *.a *.so $(VERSION_FILES) .*.d
 	$(RM) tags TAGS
 
 endif # skip-makefile

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

end of thread, other threads:[~2012-07-06 10:51 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-27 21:52 [PATCH] traceevent: make clean fix Konstantin Stepanyuk
2012-06-27 22:14 ` Steven Rostedt
2012-07-06 10:50 ` [tip:perf/core] tools lib traceevent: Fix clean target in Makefile tip-bot for Konstantin Stepanyuk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®