All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] tools: Makefile: fix selftests_install rule
@ 2015-11-17 21:54 Kevin Hilman
  2015-11-18 20:47 ` Arnaldo Carvalho de Melo
  2015-11-23 16:04 ` [tip:perf/core] tools: Fix selftests_install Makefile rule tip-bot for Kevin Hilman
  0 siblings, 2 replies; 3+ messages in thread
From: Kevin Hilman @ 2015-11-17 21:54 UTC (permalink / raw)
  To: linux-kernel
  Cc: linaro-kernel, Kevin Hilman, Shuah Khan, Michael Ellerman,
	Bamvor Jian Zhang, Arnaldo Carvalho de Melo, Jiri Olsa,
	Jonathan Cameron, Pavel Machek, Roberta Dobrescu,
	Pali Rohár

From: Kevin Hilman <khilman@linaro.org>

Fix copy/paste error in selftests_install rule which was copy-pasted
from the clean rule but not properly changed.

Cc: Shuah Khan <shuahkh@osg.samsung.com>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
Signed-off-by: Kevin Hilman <khilman@linaro.org>
---
 tools/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/Makefile b/tools/Makefile
index d6f307dfb1a3..9ad186bb4e80 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -87,7 +87,7 @@ cgroup_install firewire_install hv_install lguest_install perf_install usb_insta
 	$(call descend,$(@:_install=),install)
 
 selftests_install:
-	$(call descend,testing/$(@:_clean=),install)
+	$(call descend,testing/$(@:_install=),install)
 
 turbostat_install x86_energy_perf_policy_install:
 	$(call descend,power/x86/$(@:_install=),install)
-- 
2.4.5


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

* Re: [PATCH] tools: Makefile: fix selftests_install rule
  2015-11-17 21:54 [PATCH] tools: Makefile: fix selftests_install rule Kevin Hilman
@ 2015-11-18 20:47 ` Arnaldo Carvalho de Melo
  2015-11-23 16:04 ` [tip:perf/core] tools: Fix selftests_install Makefile rule tip-bot for Kevin Hilman
  1 sibling, 0 replies; 3+ messages in thread
From: Arnaldo Carvalho de Melo @ 2015-11-18 20:47 UTC (permalink / raw)
  To: Kevin Hilman
  Cc: linux-kernel, linaro-kernel, Kevin Hilman, Shuah Khan,
	Michael Ellerman, Bamvor Jian Zhang, Jiri Olsa, Jonathan Cameron,
	Pavel Machek, Roberta Dobrescu, Pali Rohár

Em Tue, Nov 17, 2015 at 01:54:19PM -0800, Kevin Hilman escreveu:
> From: Kevin Hilman <khilman@linaro.org>
> 
> Fix copy/paste error in selftests_install rule which was copy-pasted
> from the clean rule but not properly changed.
> 
> Cc: Shuah Khan <shuahkh@osg.samsung.com>
> Cc: Michael Ellerman <mpe@ellerman.id.au>
> Cc: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
> Signed-off-by: Kevin Hilman <khilman@linaro.org>

Thanks, applied.

- Arnaldo

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

* [tip:perf/core] tools: Fix selftests_install Makefile rule
  2015-11-17 21:54 [PATCH] tools: Makefile: fix selftests_install rule Kevin Hilman
  2015-11-18 20:47 ` Arnaldo Carvalho de Melo
@ 2015-11-23 16:04 ` tip-bot for Kevin Hilman
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Kevin Hilman @ 2015-11-23 16:04 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: bamvor.zhangjian, mpe, roberta.dobrescu, pali.rohar, pavel,
	mingo, khilman, linux-kernel, acme, jic23, hpa, shuahkh, jolsa,
	tglx

Commit-ID:  9a13c6587e2f0d5e80ce02f5f9ef62788b48d163
Gitweb:     http://git.kernel.org/tip/9a13c6587e2f0d5e80ce02f5f9ef62788b48d163
Author:     Kevin Hilman <khilman@linaro.org>
AuthorDate: Tue, 17 Nov 2015 13:54:19 -0800
Committer:  Arnaldo Carvalho de Melo <acme@redhat.com>
CommitDate: Wed, 18 Nov 2015 17:46:29 -0300

tools: Fix selftests_install Makefile rule

Fix copy/paste error in selftests_install rule which was copy-pasted
from the clean rule but not properly changed.

Signed-off-by: Kevin Hilman <khilman@linaro.org>
Cc: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Pali Rohar <pali.rohar@gmail.com>
Cc: Pavel Machek <pavel@ucw.cz>
Cc: Roberta Dobrescu <roberta.dobrescu@gmail.com>
Cc: Shuah Khan <shuahkh@osg.samsung.com>
Cc: linaro-kernel@lists.linaro.org
Link: http://lkml.kernel.org/r/1447797261-1775-1-git-send-email-khilman@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
 tools/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/Makefile b/tools/Makefile
index 7dc820a..0ba0df3 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -96,7 +96,7 @@ cgroup_install firewire_install hv_install lguest_install perf_install usb_insta
 	$(call descend,$(@:_install=),install)
 
 selftests_install:
-	$(call descend,testing/$(@:_clean=),install)
+	$(call descend,testing/$(@:_install=),install)
 
 turbostat_install x86_energy_perf_policy_install:
 	$(call descend,power/x86/$(@:_install=),install)

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

end of thread, other threads:[~2015-11-23 16:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-17 21:54 [PATCH] tools: Makefile: fix selftests_install rule Kevin Hilman
2015-11-18 20:47 ` Arnaldo Carvalho de Melo
2015-11-23 16:04 ` [tip:perf/core] tools: Fix selftests_install Makefile rule tip-bot for Kevin Hilman

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.