Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1735966 > unrolled thread
| Started by | Shuah Khan <shuahkh@osg.samsung.com> |
|---|---|
| First post | 2017-09-20 19:40 +0200 |
| Last post | 2017-09-21 03:20 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH v2] Makefile: kselftest and kselftest-clean fail for make O=dir case Shuah Khan <shuahkh@osg.samsung.com> - 2017-09-20 19:40 +0200
Re: [PATCH v2] Makefile: kselftest and kselftest-clean fail for make O=dir case Masahiro Yamada <yamada.masahiro@socionext.com> - 2017-09-21 03:20 +0200
| From | Shuah Khan <shuahkh@osg.samsung.com> |
|---|---|
| Date | 2017-09-20 19:40 +0200 |
| Subject | [PATCH v2] Makefile: kselftest and kselftest-clean fail for make O=dir case |
| Message-ID | <urR8C-67N-23@gated-at.bofh.it> |
kselftest and kselftest-clean targets fail when object directory is specified to relocate objects. Fix it so it can find the source tree to build from. make O=/tmp/kselftest_top kselftest make[1]: Entering directory '/tmp/kselftest_top' make[2]: Entering directory '/tmp/kselftest_top' make[2]: *** tools/testing/selftests: No such file or directory. Stop. make[2]: Leaving directory '/tmp/kselftest_top' ./linux-kselftest/Makefile:1185: recipe for target 'kselftest' failed make[1]: *** [kselftest] Error 2 make[1]: Leaving directory '/tmp/kselftest_top' Makefile:145: recipe for target 'sub-make' failed make: *** [sub-make] Error 2 Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com> --- Changes v1 - V2: Simplify logic - use $(srctree) Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 64cbc66cebca..7735fc32b24e 100644 --- a/Makefile +++ b/Makefile @@ -1169,14 +1169,13 @@ headers_check: headers_install # --------------------------------------------------------------------------- # Kernel selftest - PHONY += kselftest kselftest: - $(Q)$(MAKE) -C tools/testing/selftests run_tests + $(Q)$(MAKE) -C $(srctree)/tools/testing/selftests run_tests PHONY += kselftest-clean kselftest-clean: - $(Q)$(MAKE) -C tools/testing/selftests clean + $(Q)$(MAKE) -C $(srctree)/tools/testing/selftests clean PHONY += kselftest-merge kselftest-merge: -- 2.11.0
[toc] | [next] | [standalone]
| From | Masahiro Yamada <yamada.masahiro@socionext.com> |
|---|---|
| Date | 2017-09-21 03:20 +0200 |
| Subject | Re: [PATCH v2] Makefile: kselftest and kselftest-clean fail for make O=dir case |
| Message-ID | <urYjL-2of-1@gated-at.bofh.it> |
| In reply to | #1735966 |
2017-09-21 2:32 GMT+09:00 Shuah Khan <shuahkh@osg.samsung.com>: > kselftest and kselftest-clean targets fail when object directory is > specified to relocate objects. Fix it so it can find the source tree > to build from. > > make O=/tmp/kselftest_top kselftest > > make[1]: Entering directory '/tmp/kselftest_top' > make[2]: Entering directory '/tmp/kselftest_top' > make[2]: *** tools/testing/selftests: No such file or directory. Stop. > make[2]: Leaving directory '/tmp/kselftest_top' > ./linux-kselftest/Makefile:1185: recipe for target > 'kselftest' failed > make[1]: *** [kselftest] Error 2 > make[1]: Leaving directory '/tmp/kselftest_top' > Makefile:145: recipe for target 'sub-make' failed > make: *** [sub-make] Error 2 > > Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com> > --- > Changes v1 - V2: Simplify logic - use $(srctree) > > Makefile | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/Makefile b/Makefile > index 64cbc66cebca..7735fc32b24e 100644 > --- a/Makefile > +++ b/Makefile > @@ -1169,14 +1169,13 @@ headers_check: headers_install > > # --------------------------------------------------------------------------- > # Kernel selftest > - > PHONY += kselftest > kselftest: > - $(Q)$(MAKE) -C tools/testing/selftests run_tests > + $(Q)$(MAKE) -C $(srctree)/tools/testing/selftests run_tests > > PHONY += kselftest-clean > kselftest-clean: > - $(Q)$(MAKE) -C tools/testing/selftests clean > + $(Q)$(MAKE) -C $(srctree)/tools/testing/selftests clean > > PHONY += kselftest-merge > kselftest-merge: > -- Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com> -- Best Regards Masahiro Yamada
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web