diff options
author | Mark Asselstine <mark.asselstine@windriver.com> | 2014-03-05 15:58:32 -0500 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2014-03-12 23:47:41 -0400 |
commit | 8cabf90bcc1d648511dc9f33adf5ef30e539c682 (patch) | |
tree | 64f885fda240af44464211d5c781b1e60e355e4d | |
parent | b3e328b6826046d7e82c9ac22e8f0648073a3fc8 (diff) | |
download | meta-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.inc | 2 | ||||
-rw-r--r-- | meta-openstack/recipes-devtools/erlang/erlang_R15B.bb | 2 |
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 @@ | |||
1 | DESCRIPTION = "A dynamic programming language and runtime environment, \ | 1 | DESCRIPTION = "A dynamic programming language and runtime environment, \ |
2 | with built-in support for concurrency, distribution and fault tolerance" | 2 | with built-in support for concurrency, distribution and fault tolerance" |
3 | SECTION = "devel/erlang" | 3 | SECTION = "devel/erlang" |
4 | DEPENDS = "ncurses" | 4 | DEPENDS = "ncurses ncurses-native" |
5 | PRIORITY = "optional" | 5 | PRIORITY = "optional" |
6 | LICENSE = "ErlPL-1.1" | 6 | LICENSE = "ErlPL-1.1" |
7 | LIC_FILES_CHKSUM = "file://EPLICENCE;md5=09f9063ea35bc5bd124df2fda1d9d2c7" | 7 | LIC_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 @@ | |||
1 | include erlang.inc | 1 | include erlang.inc |
2 | DEPENDS += "erlang-native openssl" | 2 | DEPENDS += "openssl" |
3 | 3 | ||
4 | PR = "r3" | 4 | PR = "r3" |
5 | 5 | ||