aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gdb/gdb-cross_6.7.1.bb
blob: adccebe1157c2300b14c4cb14cc1637baad4a55d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require gdb-cross.inc
inherit cross

DEFAULT_PREFERENCE_avr32 = "99"
SRC_URI_avr32 = " http://avr32linux.org/twiki/pub/Main/GDBPatches/gdb-6.7.1.atmel.1.0.3.tar.bz2"
S_avr32 = "${WORKDIR}/gdb-6.7.1.atmel.1.0.3"

do_configure_prepend() {
    for i in $(find ${S} -name "warning*m4") ; do
        sed -i -e s:-Werror::g $i
    done
    for i in $(find ${S} -name "configure.ac") ; do
        sed -i -e s:-Werror::g $i
    done
    for i in $(find ${S} -name "configure") ; do
        sed -i -e s:-Werror::g $i
    done
}