diff options
author | Ross Burton <ross.burton@intel.com> | 2016-06-10 17:55:12 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-12 23:47:19 +0100 |
commit | 9199a25e0177e278f94f80af08c05f8f75a21623 (patch) | |
tree | 045f165e38b609a20ce97531f605253bac42ce75 | |
parent | db84521aacaf71b20aa12009f38c057a6bf416bc (diff) | |
download | poky-9199a25e0177e278f94f80af08c05f8f75a21623.tar.gz |
systemtap: add build dependency on ncurses
systemtap has a floating dependency on ncurses but as bash is a RDEPENDS the
build-rdeps sanity test doesn't fire due to a limitation of the test.
Add an explicit dependency on ncurses to ensure the build is deterministic.
[ YOCTO #9709 ]
(From OE-Core rev: 2fdd2c1434e7c741b8048145bd460c68bea7ee53)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/systemtap/systemtap_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/systemtap/systemtap_git.bb b/meta/recipes-kernel/systemtap/systemtap_git.bb index a4bda6930e..da30fa5e6d 100644 --- a/meta/recipes-kernel/systemtap/systemtap_git.bb +++ b/meta/recipes-kernel/systemtap/systemtap_git.bb | |||
@@ -2,7 +2,7 @@ SUMMARY = "Script-directed dynamic tracing and performance analysis tool for Lin | |||
2 | 2 | ||
3 | require systemtap_git.inc | 3 | require systemtap_git.inc |
4 | 4 | ||
5 | DEPENDS = "elfutils sqlite3 systemtap-native json-c" | 5 | DEPENDS = "elfutils sqlite3 systemtap-native ncurses json-c" |
6 | DEPENDS_class-native = "elfutils-native sqlite3-native gettext-native" | 6 | DEPENDS_class-native = "elfutils-native sqlite3-native gettext-native" |
7 | DEPENDS_class-nativesdk = "nativesdk-elfutils nativesdk-sqlite3 nativesdk-gettext" | 7 | DEPENDS_class-nativesdk = "nativesdk-elfutils nativesdk-sqlite3 nativesdk-gettext" |
8 | 8 | ||