diff options
author | Wenzong Fan <wenzong.fan@windriver.com> | 2012-08-09 10:59:15 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-15 14:26:40 +0100 |
commit | 69e836604feb010c969b20f5bda34aeafddfc1da (patch) | |
tree | 1eaa59b84c74bc3ac9684c1c4d21362fef9caf3c | |
parent | 883c1e97ec24f516d3eb7cb211daf7ac54050469 (diff) | |
download | poky-69e836604feb010c969b20f5bda34aeafddfc1da.tar.gz |
at 3.1.13: get 'at' depends on 'flex-native' explicitly
'at' needs flex to generate source file lex.yy.c, but it doesn't
depend on flex-native directly; This maybe cause a do_compile
failure if flex-native is not built or included in project.
Error message is:
error: lex.yy.c: No such file or directory
Get 'at' depends on flex-native to fix this potential issue.
[YOCTO #2919]
(From OE-Core rev: f5a722a1db6315ba945c41551c60b1ef2c8b647f)
Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/at/at_3.1.13.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/at/at_3.1.13.bb b/meta/recipes-extended/at/at_3.1.13.bb index ce9396a005..a391d6ebef 100644 --- a/meta/recipes-extended/at/at_3.1.13.bb +++ b/meta/recipes-extended/at/at_3.1.13.bb | |||
@@ -4,14 +4,14 @@ the system load levels drop to a particular level." | |||
4 | SECTION = "base" | 4 | SECTION = "base" |
5 | LICENSE="GPLv2+" | 5 | LICENSE="GPLv2+" |
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=4325afd396febcb659c36b49533135d4" | 6 | LIC_FILES_CHKSUM = "file://COPYING;md5=4325afd396febcb659c36b49533135d4" |
7 | DEPENDS = "flex initscripts \ | 7 | DEPENDS = "flex flex-native initscripts \ |
8 | ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" | 8 | ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" |
9 | RDEPENDS_${PN} = "${@base_contains('DISTRO_FEATURES', 'pam', '${PAM_DEPS}', '', d)}" | 9 | RDEPENDS_${PN} = "${@base_contains('DISTRO_FEATURES', 'pam', '${PAM_DEPS}', '', d)}" |
10 | PAM_DEPS = "libpam libpam-runtime pam-plugin-env pam-plugin-limits" | 10 | PAM_DEPS = "libpam libpam-runtime pam-plugin-env pam-plugin-limits" |
11 | 11 | ||
12 | RCONFLICTS_${PN} = "atd" | 12 | RCONFLICTS_${PN} = "atd" |
13 | RREPLACES_${PN} = "atd" | 13 | RREPLACES_${PN} = "atd" |
14 | PR = "r2" | 14 | PR = "r3" |
15 | 15 | ||
16 | SRC_URI = "${DEBIAN_MIRROR}/main/a/at/at_${PV}.orig.tar.gz \ | 16 | SRC_URI = "${DEBIAN_MIRROR}/main/a/at/at_${PV}.orig.tar.gz \ |
17 | file://configure.patch \ | 17 | file://configure.patch \ |