diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-11-22 09:24:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-12 16:53:10 +0000 |
commit | b9b213b43c5ff6aa7c04733ce035fc9832065328 (patch) | |
tree | 0078a47a0a5d88d10874a60df4b3619d6b4d734f | |
parent | 33d7487a92905824ab46f74d7185f84662ddb922 (diff) | |
download | openembedded-core-b9b213b43c5ff6aa7c04733ce035fc9832065328.tar.gz openembedded-core-b9b213b43c5ff6aa7c04733ce035fc9832065328.tar.bz2 openembedded-core-b9b213b43c5ff6aa7c04733ce035fc9832065328.zip |
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 master rev: 5dd8653fdcda5e0e8b4f3c37a46f357bc97ec66c)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
-rw-r--r-- | meta/recipes-extended/ethtool/ethtool_3.10.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/ethtool/ethtool_3.10.bb b/meta/recipes-extended/ethtool/ethtool_3.10.bb index 83587d90be..d23c285cff 100644 --- a/meta/recipes-extended/ethtool/ethtool_3.10.bb +++ b/meta/recipes-extended/ethtool/ethtool_3.10.bb @@ -16,7 +16,7 @@ inherit autotools ptest RDEPENDS_${PN}-ptest += "make" do_compile_ptest() { - oe_runmake buildtest-TESTS + oe_runmake test-cmdline test-features } do_install_ptest () { |