blob: 05d6250783a2b653893df876c9c76f982fdae8f4 (
plain)
1
2
3
4
5
6
7
8
|
require glibc_${PV}.bb
require glibc-intermediate.inc
# gcc uses -Werror which break on a "you have no thumb interwork" _warning_
do_configure_prepend() {
sed -i s:-Werror:: ${S}/configure
}
|