diff options
author | Bamvor Jian Zhang <bamvor.zhangjian@linaro.org> | 2015-08-14 16:43:35 +0300 |
---|---|---|
committer | Shuah Khan <shuahkh@osg.samsung.com> | 2015-08-28 01:04:15 +0300 |
commit | a7d0f078892ee5e737cbe79541353c630bc71651 (patch) | |
tree | 18b4fea0c3b264d4ecedcffa383879c9659a5db9 /tools/testing/selftests/Makefile | |
parent | f21fb798fe38cf87b177d45820991f0e315c0ba8 (diff) | |
download | linux-a7d0f078892ee5e737cbe79541353c630bc71651.tar.xz |
selftests: check before install
When the test cases is not supported by the current architecture
the install files(TEST_PROGS, TEST_PROGS_EXTENDED and TEST_FILES)
will be empty. Check it before installation to dismiss a failure
reported by install program.
Signed-off-by: Bamvor Jian Zhang <bamvor.zhangjian@linaro.org>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/testing/selftests/Makefile')
-rw-r--r-- | tools/testing/selftests/Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/testing/selftests/Makefile b/tools/testing/selftests/Makefile index 9763dd95b4c8..b2179587c8fe 100644 --- a/tools/testing/selftests/Makefile +++ b/tools/testing/selftests/Makefile @@ -72,7 +72,6 @@ ifdef INSTALL_PATH @# Ask all targets to install their files mkdir -p $(INSTALL_PATH) for TARGET in $(TARGETS); do \ - mkdir -p $(INSTALL_PATH)/$$TARGET ; \ make -C $$TARGET INSTALL_PATH=$(INSTALL_PATH)/$$TARGET install; \ done; |