From: Leon Woestenberg Date: Wed, 30 Apr 2008 00:02:18 +0000 (+0000) Subject: gdb-cross.inc: Fix for issues when system's texinfo version >= 4.10 X-Git-Tag: Release-2010-05/1~7070^2~5 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5dc64cdceaa9092577cfe5bdac96adffcaca0084;p=openembedded.git gdb-cross.inc: Fix for issues when system's texinfo version >= 4.10 --- diff --git a/packages/gdb/gdb-cross.inc b/packages/gdb/gdb-cross.inc index 480cce4931..9870b9870b 100644 --- a/packages/gdb/gdb-cross.inc +++ b/packages/gdb/gdb-cross.inc @@ -10,6 +10,12 @@ do_configure () { # override this function to avoid the autoconf/automake/aclocal/autoheader # calls for now (cd ${S} && gnu-configize) || die "failure in running gnu-configize" + + # Fix for issues when system's texinfo version >= 4.10 + # (See https://bugzilla.redhat.com/show_bug.cgi?id=345621) + sed -i -e 's/egrep `texinfo.*`/egrep `texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|4.[1-9][0-9]+|[5-9])`/' '${S}/configure' + + oe_runconf }