diff options
author | Tom Rini <trini@embeddedalley.com> | 2008-12-05 00:45:25 +0000 |
---|---|---|
committer | Tom Rini <trini@embeddedalley.com> | 2008-12-05 00:45:25 +0000 |
commit | f9b92f770bde15dec86a9b0a6af0f1a83096d76a (patch) | |
tree | ecbeaf8dd312d222f7c3b1fa0693f72d1b4382bd /packages/gdb/gdb-cross-sdk_6.8.bb | |
parent | 4bd107ee9f3f6a3069c87be6f68b38c54cfbfd65 (diff) |
gdb, gdb-cross, gdb-cross-sdk 6.8 : Pull in a patch from Ubuntu for gcc-4.3
gcc-4.3 introduces new warnings for certain risky-in-some-situations
behaviors. Previously we had just sed'd out -Werror from gcc-cross-sdk.
Now pull in a patch from Ubuntu to fix all these warnings and apply to all
gdb 6.8 variants. Bump PR.
Diffstat (limited to 'packages/gdb/gdb-cross-sdk_6.8.bb')
-rw-r--r-- | packages/gdb/gdb-cross-sdk_6.8.bb | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/packages/gdb/gdb-cross-sdk_6.8.bb b/packages/gdb/gdb-cross-sdk_6.8.bb index be5c4807d8..6aed03d639 100644 --- a/packages/gdb/gdb-cross-sdk_6.8.bb +++ b/packages/gdb/gdb-cross-sdk_6.8.bb @@ -1,22 +1,12 @@ require gdb-cross.inc +SRC_URI += "file://gcc-4.3-build-error.patch;patch=1;pnum=0" + DEPENDS = "ncurses-sdk" inherit sdk -PR = "r1" - -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 -} +PR = "r2" do_stage() { : |