[oe-commits] Khem Raj : gawk: Add missing dependency on readline

git at git.openembedded.org git at git.openembedded.org
Wed Jan 30 14:00:28 UTC 2013


Module: openembedded-core.git
Branch: master-next
Commit: 9a43a67993c21cedf6cf71138e3da9c691ebf4a7
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=9a43a67993c21cedf6cf71138e3da9c691ebf4a7

Author: Khem Raj <raj.khem at gmail.com>
Date:   Thu Jan 24 12:18:23 2013 -0800

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.

Signed-off-by: Khem Raj <raj.khem at gmail.com>

---

 meta/recipes-extended/gawk/gawk_4.0.1.bb |    2 ++
 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 fcd7619..38ad25b 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"
 LICENSE = "GPLv3"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 
+DEPENDS += "readline"
+
 RDEPENDS_gawk += "gawk-common"
 RDEPENDS_pgawk += "gawk-common"
 PR = "r1"





More information about the Openembedded-commits mailing list