aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gdb/gdb-cross_6.7.1.bb
blob: 0681029694402d26ae7c51a94f7bad99e7002997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require gdb-cross.inc
LICENSE = "GPLv3"

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
}