diff options
author | Konstantin Stepanyuk <konstantin.stepanyuk@gmail.com> | 2012-06-27 17:52:14 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2012-06-29 12:28:11 -0400 |
commit | f526a4ce2643e2636c091cf2bf0ec1442110c5b7 (patch) | |
tree | d19ce6c1559d740655eea3d9dc88ec35eac1b970 | |
parent | add79461a2a7d964a00b4a2fdaf313c4cf9cf4ec (diff) |
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>
-rw-r--r-- | 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 3d69aa9ff51e..423f4b81ecce 100644 --- a/tools/lib/traceevent/Makefile +++ b/tools/lib/traceevent/Makefile | |||
@@ -290,7 +290,7 @@ install_lib: all_cmd install_plugins install_python | |||
290 | install: install_lib | 290 | install: install_lib |
291 | 291 | ||
292 | clean: | 292 | clean: |
293 | $(RM) *.o *~ $(TARGETS) *.a *.so $(VERSION_FILES).*.d | 293 | $(RM) *.o *~ $(TARGETS) *.a *.so $(VERSION_FILES) .*.d |
294 | $(RM) tags TAGS | 294 | $(RM) tags TAGS |
295 | 295 | ||
296 | endif # skip-makefile | 296 | endif # skip-makefile |