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 09:26:08 +0000 |
commit | 5dd8653fdcda5e0e8b4f3c37a46f357bc97ec66c (patch) | |
tree | 018faddf10854879703768d8d98ae118a1a8ba65 /meta/recipes-extended | |
parent | 570cc145029fd9d5528aef5c27cb65164265c799 (diff) | |
download | openembedded-core-5dd8653fdcda5e0e8b4f3c37a46f357bc97ec66c.tar.gz openembedded-core-5dd8653fdcda5e0e8b4f3c37a46f357bc97ec66c.tar.bz2 openembedded-core-5dd8653fdcda5e0e8b4f3c37a46f357bc97ec66c.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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-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 RDEPENDS_${PN}-ptest += "make" do_compile_ptest() { - oe_runmake buildtest-TESTS + oe_runmake test-cmdline test-features } do_install_ptest () { |