blob: 59cc945c6120e90ee85da2853bf3961b0e606fcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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
}
SRC_URI[md5sum] = "7a74dcafdd39d18678e5b5cc2c50bb0c"
SRC_URI[sha256sum] = "66e6ff871a7ed71ea433b8341ffebbe48590119e43a42953d392f5ce517c95e4"
|