git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
863b8df
)
gdb-cross-sdk: don't use -Werror
author
Koen Kooi
<koen@openembedded.org>
Sun, 22 Jun 2008 09:27:05 +0000
(09:27 +0000)
committer
Koen Kooi
<koen@openembedded.org>
Sun, 22 Jun 2008 09:27:05 +0000
(09:27 +0000)
packages/gdb/gdb-cross-sdk_6.8.bb
patch
|
blob
|
history
diff --git
a/packages/gdb/gdb-cross-sdk_6.8.bb
b/packages/gdb/gdb-cross-sdk_6.8.bb
index
6bb9616
..
be5c480
100644
(file)
--- a/
packages/gdb/gdb-cross-sdk_6.8.bb
+++ b/
packages/gdb/gdb-cross-sdk_6.8.bb
@@
-6,6
+6,18
@@
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
+}
+
do_stage() {
:
}