diff options
author | Ross Burton <ross.burton@intel.com> | 2015-12-10 15:49:27 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-12-12 23:31:43 +0000 |
commit | ec9f727fc95d5ac4b4209272f794c4865dd2946f (patch) | |
tree | 401d2b0681efe5762744803e44bb967709a50268 | |
parent | 652c5ae2c8317dcd93ada409365eeb56ceb54d0b (diff) | |
download | openembedded-core-ec9f727fc95d5ac4b4209272f794c4865dd2946f.tar.gz openembedded-core-ec9f727fc95d5ac4b4209272f794c4865dd2946f.tar.bz2 openembedded-core-ec9f727fc95d5ac4b4209272f794c4865dd2946f.zip |
attr: add attr dependency to attr-ptest
If attr-ptest is explicitly installed it will fail as attr isn't a dependency.
[ YOCTO #8766 ]
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-support/attr/attr.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-support/attr/attr.inc b/meta/recipes-support/attr/attr.inc index 28c750f987..68609784d9 100644 --- a/meta/recipes-support/attr/attr.inc +++ b/meta/recipes-support/attr/attr.inc @@ -34,6 +34,6 @@ do_install_ptest() { sed -e 's|; @echo|; echo|' -i ${D}${PTEST_PATH}/test/Makefile } -RDEPENDS_${PN}-ptest = "coreutils perl-module-filehandle perl-module-getopt-std perl-module-posix" +RDEPENDS_${PN}-ptest = "attr coreutils perl-module-filehandle perl-module-getopt-std perl-module-posix" -BBCLASSEXTEND = "native nativesdk"
\ No newline at end of file +BBCLASSEXTEND = "native nativesdk" |