abiword: add 2.8.3
[openembedded.git] / recipes / gdb / gdb-canadian-cross.inc
1 require gdb-common.inc
2
3 inherit canadian-sdk
4
5 EXTRA_OEMAKE = "'SUBDIRS=intl mmalloc libiberty opcodes bfd sim gdb etc utils' LDFLAGS='${BUILD_LDFLAGS}'"
6
7 do_configure () {
8 # override this function to avoid the autoconf/automake/aclocal/autoheader
9 # calls for now
10         (cd ${S} && gnu-configize) || die "failure in running gnu-configize"
11
12         # Fix for issues when system's texinfo version >= 4.10
13         # (See https://bugzilla.redhat.com/show_bug.cgi?id=345621)
14         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'
15
16
17         oe_runconf
18 }