summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Asselstine <mark.asselstine@windriver.com>2014-03-05 15:58:32 -0500
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-03-12 23:47:41 -0400
commit8cabf90bcc1d648511dc9f33adf5ef30e539c682 (patch)
tree64f885fda240af44464211d5c781b1e60e355e4d
parentb3e328b6826046d7e82c9ac22e8f0648073a3fc8 (diff)
downloadmeta-cloud-services-8cabf90bcc1d648511dc9f33adf5ef30e539c682.tar.gz
erlang: add missing DEPENDS for -native build
We require a DEPENDS for ncurses-native or else we can fail with: configure:18108: error: No curses library functions found when building erlang-native. Since there is already a DEPENDS for ncurses-native in the non -native recipe we move this into the .inc so it is used for both non -native and -native builds. 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.inc2
-rw-r--r--meta-openstack/recipes-devtools/erlang/erlang_R15B.bb2
2 files changed, 2 insertions, 2 deletions
diff --git a/meta-openstack/recipes-devtools/erlang/erlang.inc b/meta-openstack/recipes-devtools/erlang/erlang.inc
index 32ee135..9b1b77c 100644
--- a/meta-openstack/recipes-devtools/erlang/erlang.inc
+++ b/meta-openstack/recipes-devtools/erlang/erlang.inc
@@ -1,7 +1,7 @@
1DESCRIPTION = "A dynamic programming language and runtime environment, \ 1DESCRIPTION = "A dynamic programming language and runtime environment, \
2with built-in support for concurrency, distribution and fault tolerance" 2with built-in support for concurrency, distribution and fault tolerance"
3SECTION = "devel/erlang" 3SECTION = "devel/erlang"
4DEPENDS = "ncurses" 4DEPENDS = "ncurses ncurses-native"
5PRIORITY = "optional" 5PRIORITY = "optional"
6LICENSE = "ErlPL-1.1" 6LICENSE = "ErlPL-1.1"
7LIC_FILES_CHKSUM = "file://EPLICENCE;md5=09f9063ea35bc5bd124df2fda1d9d2c7" 7LIC_FILES_CHKSUM = "file://EPLICENCE;md5=09f9063ea35bc5bd124df2fda1d9d2c7"
diff --git a/meta-openstack/recipes-devtools/erlang/erlang_R15B.bb b/meta-openstack/recipes-devtools/erlang/erlang_R15B.bb
index d7fd310..0e8e0b4 100644
--- a/meta-openstack/recipes-devtools/erlang/erlang_R15B.bb
+++ b/meta-openstack/recipes-devtools/erlang/erlang_R15B.bb
@@ -1,5 +1,5 @@
1include erlang.inc 1include erlang.inc
2DEPENDS += "erlang-native openssl" 2DEPENDS += "openssl"
3 3
4PR = "r3" 4PR = "r3"
5 5