diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-22 09:24:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-22 12:03:02 +0000 |
commit | fda7b7bef1c3b0d77c370c80281ae4ce09a18cdf (patch) | |
tree | 8e6351a5663bc6d6238bf5764693a713104b8185 | |
parent | e031a05b6d124f7bcaf22c92423c2e47df1d728c (diff) | |
download | poky-fda7b7bef1c3b0d77c370c80281ae4ce09a18cdf.tar.gz |
ethtool: Fix ptest compile
buildtest-TESTS is a phony target and does nothing which results in a
do_install error since the tests aren't built. Since there isn't
a suitable make target but the number of tests are small, hardcode
the two to build to unbreak the build when ptest is enabled.
(From OE-Core rev: 5dd8653fdcda5e0e8b4f3c37a46f357bc97ec66c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/ethtool/ethtool_3.12.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/ethtool/ethtool_3.12.1.bb b/meta/recipes-extended/ethtool/ethtool_3.12.1.bb index 19bca2fa0b..661500994e 100644 --- a/meta/recipes-extended/ethtool/ethtool_3.12.1.bb +++ b/meta/recipes-extended/ethtool/ethtool_3.12.1.bb | |||
@@ -16,7 +16,7 @@ inherit autotools ptest | |||
16 | RDEPENDS_${PN}-ptest += "make" | 16 | RDEPENDS_${PN}-ptest += "make" |
17 | 17 | ||
18 | do_compile_ptest() { | 18 | do_compile_ptest() { |
19 | oe_runmake buildtest-TESTS | 19 | oe_runmake test-cmdline test-features |
20 | } | 20 | } |
21 | 21 | ||
22 | do_install_ptest () { | 22 | do_install_ptest () { |