diff options
author | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2008-04-30 11:45:25 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2008-04-30 11:45:25 +0000 |
commit | 2eebccf63414618a6da891784eef7635a885e33e (patch) | |
tree | 18f260a22143c4a495ea660bdaa2e34632f96cdf /packages/gdb/gdb-cross.inc | |
parent | 97a1321ef27cb993f15464c2c43e02f81543a401 (diff) | |
parent | 0970057a1b0c654384a46c2361888322eb614d5e (diff) |
merge of '26a2db272eb8a8c45759850000cba2e07e5de47e'
and 'c7279b542db917aa1365c575fa3b2d81439abf03'
Diffstat (limited to 'packages/gdb/gdb-cross.inc')
-rw-r--r-- | packages/gdb/gdb-cross.inc | 6 |
1 files changed, 6 insertions, 0 deletions
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 } |