2015-11-17 21:54:25

by Kevin Hilman

[permalink] [raw]
Subject: [PATCH] tools: Makefile: fix selftests_install rule

From: Kevin Hilman <[email protected]>

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

Cc: Shuah Khan <[email protected]>
Cc: Michael Ellerman <[email protected]>
Cc: Bamvor Jian Zhang <[email protected]>
Signed-off-by: Kevin Hilman <[email protected]>
---
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


2015-11-18 20:47:56

by Arnaldo Carvalho de Melo

[permalink] [raw]
Subject: Re: [PATCH] tools: Makefile: fix selftests_install rule

Em Tue, Nov 17, 2015 at 01:54:19PM -0800, Kevin Hilman escreveu:
> From: Kevin Hilman <[email protected]>
>
> Fix copy/paste error in selftests_install rule which was copy-pasted
> from the clean rule but not properly changed.
>
> Cc: Shuah Khan <[email protected]>
> Cc: Michael Ellerman <[email protected]>
> Cc: Bamvor Jian Zhang <[email protected]>
> Signed-off-by: Kevin Hilman <[email protected]>

Thanks, applied.

- Arnaldo

Subject: [tip:perf/core] tools: Fix selftests_install Makefile rule

Commit-ID: 9a13c6587e2f0d5e80ce02f5f9ef62788b48d163
Gitweb: http://git.kernel.org/tip/9a13c6587e2f0d5e80ce02f5f9ef62788b48d163
Author: Kevin Hilman <[email protected]>
AuthorDate: Tue, 17 Nov 2015 13:54:19 -0800
Committer: Arnaldo Carvalho de Melo <[email protected]>
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 <[email protected]>
Cc: Bamvor Jian Zhang <[email protected]>
Cc: Jiri Olsa <[email protected]>
Cc: Jonathan Cameron <[email protected]>
Cc: Michael Ellerman <[email protected]>
Cc: Pali Rohar <[email protected]>
Cc: Pavel Machek <[email protected]>
Cc: Roberta Dobrescu <[email protected]>
Cc: Shuah Khan <[email protected]>
Cc: [email protected]
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
---
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)