Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1271690
| From | Kevin Hilman <khilman@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] tools: Makefile: fix selftests_install rule |
| Date | 2015-11-17 23:00 +0100 |
| Message-ID | <qvWsb-2bK-11@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
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 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] tools: Makefile: fix selftests_install rule Kevin Hilman <khilman@kernel.org> - 2015-11-17 23:00 +0100 Re: [PATCH] tools: Makefile: fix selftests_install rule Arnaldo Carvalho de Melo <acme@redhat.com> - 2015-11-18 21:50 +0100 [tip:perf/core] tools: Fix selftests_install Makefile rule tip-bot for Kevin Hilman <tipbot@zytor.com> - 2015-11-23 17:10 +0100
csiph-web