diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-23 23:10:57 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-23 23:10:57 +0100 |
commit | 79b7a566a29386b6075834a46c9c926d503581d9 (patch) | |
tree | ea0a86b35e5fbb33117956f6709fc24c634cf1cb /meta/packages/opkg | |
parent | d87496637d127fd500207a642c1f11925109d403 (diff) | |
download | poky-79b7a566a29386b6075834a46c9c926d503581d9.tar.gz |
opkg: Disable Werror, too many false positives with gcc 4.3.3
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages/opkg')
-rw-r--r-- | meta/packages/opkg/opkg.inc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/packages/opkg/opkg.inc b/meta/packages/opkg/opkg.inc index 852d2e49b4..0b1db89c8a 100644 --- a/meta/packages/opkg/opkg.inc +++ b/meta/packages/opkg/opkg.inc | |||
@@ -20,4 +20,9 @@ SRC_URI = "svn://svn.openmoko.org/trunk/src/target/;module=opkg;proto=http \ | |||
20 | 20 | ||
21 | S = "${WORKDIR}/opkg" | 21 | S = "${WORKDIR}/opkg" |
22 | 22 | ||
23 | # Werror gives all kinds bounds issuses with gcc 4.3.3 | ||
24 | do_configure_prepend() { | ||
25 | sed -i -e s:-Werror::g ${S}/libopkg/Makefile.am | ||
26 | } | ||
27 | |||
23 | inherit autotools_stage pkgconfig | 28 | inherit autotools_stage pkgconfig |