diff options
author | 2017-08-23 15:20:39 -0400 | |
---|---|---|
committer | 2017-08-24 09:58:54 -0400 | |
commit | c41b0107f0bf1aebf3def177fd3a8d8e9130e0af (patch) | |
tree | e3fc16cc78d04ea95169cbb2d7f6a1789471ea49 | |
parent | 0330cdf2c1b4494568de8785ac56ca734616e196 (diff) | |
download | meta-cloud-services-c41b0107f0bf1aebf3def177fd3a8d8e9130e0af.tar.gz meta-cloud-services-c41b0107f0bf1aebf3def177fd3a8d8e9130e0af.tar.bz2 meta-cloud-services-c41b0107f0bf1aebf3def177fd3a8d8e9130e0af.zip |
erlang-native: Add DEPENDS for ncurses-native
This was most likely being provided by another pkg pulling in
ncurses-native before erlang-native was being built. With RSS this is
no longer the case and we need to add the explicit DEPENDS. Without
this we are seeing erlang-native fail to configure:
| checking for tgetent in -lncurses... no
| checking for tgetent in -lcurses... no
| checking for tgetent in -ltermcap... no
| checking for tgetent in -ltermlib... no
| configure: error: No curses library functions found
While we are at it we drop the setting of PR as this will be handled
by the PR server.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | meta-openstack/recipes-devtools/erlang/erlang-native_R16B03-1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-openstack/recipes-devtools/erlang/erlang-native_R16B03-1.bb b/meta-openstack/recipes-devtools/erlang/erlang-native_R16B03-1.bb index ca6a48fa..61fc027d 100644 --- a/meta-openstack/recipes-devtools/erlang/erlang-native_R16B03-1.bb +++ b/meta-openstack/recipes-devtools/erlang/erlang-native_R16B03-1.bb @@ -2,7 +2,7 @@ include erlang.inc inherit native -PR = "r0" +DEPENDS += "ncurses-native" EXTRA_OECONF = '--without-ssl' |