summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/gawk
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2013-01-24 12:18:23 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-25 14:37:22 +0000
commit1af44d18cc0ba6c30d6d4ccc1734a9cf86196117 (patch)
treeb2137e96e8082db97e7a997b3341e744667ec1a0 /meta/recipes-extended/gawk
parent2a314eb41b2ad046d9cf7f21934e877fef4437ed (diff)
downloadpoky-1af44d18cc0ba6c30d6d4ccc1734a9cf86196117.tar.gz
gawk: Add missing dependency on readline
building from shared state often ends up with | /b/kraj/angstrom/build/tmp-angstrom_next-uclibc/work/i586-angstrom-linux-uclibc/gawk/4.0.1-r1/gawk-4 .0.1/debug.c:4135: undefined reference to `rl_reset_terminal' | /b/kraj/angstrom/build/tmp-angstrom_next-uclibc/work/i586-angstrom-linux-uclibc/gawk/4.0.1-r1/gawk-4 .0.1/debug.c:4138: undefined reference to `rl_get_screen_size' | debug.o: In function `unserialize': Adding the missing readline dependency to fix such cases where readline has not been populated in sysroot via some other dependency and gawk would then use it or bail out. (From OE-Core rev: 9a43a67993c21cedf6cf71138e3da9c691ebf4a7) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/gawk')
-rw-r--r--meta/recipes-extended/gawk/gawk_4.0.1.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-extended/gawk/gawk_4.0.1.bb b/meta/recipes-extended/gawk/gawk_4.0.1.bb
index fcd761984d..38ad25b588 100644
--- a/meta/recipes-extended/gawk/gawk_4.0.1.bb
+++ b/meta/recipes-extended/gawk/gawk_4.0.1.bb
@@ -9,6 +9,8 @@ SECTION = "console/utils"
9LICENSE = "GPLv3" 9LICENSE = "GPLv3"
10LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" 10LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
11 11
12DEPENDS += "readline"
13
12RDEPENDS_gawk += "gawk-common" 14RDEPENDS_gawk += "gawk-common"
13RDEPENDS_pgawk += "gawk-common" 15RDEPENDS_pgawk += "gawk-common"
14PR = "r1" 16PR = "r1"