diff options
author | Fathi Boudra <fathi.boudra@linaro.org> | 2017-07-05 14:13:11 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-07-06 14:38:08 +0100 |
commit | a7480beb33e69d7cb63353ffa215326f4ae4b87d (patch) | |
tree | 0de6513bc7bc3981172efb4701f1d273e4dcc5e3 | |
parent | 69bd27d9d268d4c52aa521a0ceed0eb5a259a516 (diff) | |
download | openembedded-core-a7480beb33e69d7cb63353ffa215326f4ae4b87d.tar.gz openembedded-core-a7480beb33e69d7cb63353ffa215326f4ae4b87d.tar.bz2 openembedded-core-a7480beb33e69d7cb63353ffa215326f4ae4b87d.zip |
ltp: add acl, attr, curl and util-linux runtime dependencies
* Use a list and re-order alphabetically to make it easier to read and
update.
* Add missing runtime dependencies:
- acl (getfacl/setfacl commands are required)
- attr (getfattr/setfattr commands are required)
- iproute2 (required for netns tests)
- curl (curl command is required)
- util-linux (ipcs command is required)
Reported-by: Naresh Kamboju <naresh.kamboju@linaro.org>
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-extended/ltp/ltp_20170516.bb | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/meta/recipes-extended/ltp/ltp_20170516.bb b/meta/recipes-extended/ltp/ltp_20170516.bb index ac66b09569..86b801288d 100644 --- a/meta/recipes-extended/ltp/ltp_20170516.bb +++ b/meta/recipes-extended/ltp/ltp_20170516.bb @@ -96,7 +96,28 @@ do_install(){ cp -r testcases/open_posix_testsuite ${D}/opt/ltp/testcases } -RDEPENDS_${PN} = "perl e2fsprogs-mke2fs python-core libaio bash gawk expect ldd unzip gzip cpio cronie logrotate which at" +RDEPENDS_${PN} = "\ + acl \ + at \ + attr \ + bash \ + cpio \ + cronie \ + curl \ + e2fsprogs-mke2fs \ + expect \ + gawk \ + gzip \ + iproute2 \ + ldd \ + libaio \ + logrotate \ + perl \ + python-core \ + unzip \ + util-linux \ + which \ +" FILES_${PN}-staticdev += "/opt/ltp/lib/libmem.a /opt/ltp/testcases/data/nm01/lib.a" @@ -107,4 +128,3 @@ INHIBIT_PACKAGE_STRIP = "1" INHIBIT_PACKAGE_DEBUG_SPLIT = "1" # However, test_arch_stripped is already stripped, so... INSANE_SKIP_${PN} += "already-stripped" - |