diff options
author | Damien Lespiau <damien.lespiau@gmail.com> | 2009-02-09 11:10:17 +0000 |
---|---|---|
committer | Damien Lespiau <damien.lespiau@gmail.com> | 2009-02-09 11:13:05 +0000 |
commit | 53973f286bda45086deb932076d09997624804da (patch) | |
tree | 05f9544d1736ee9ac3ae6e14197e1f9605b76e96 /meta/packages/opkg/opkg.inc | |
parent | 0903f6a455ff194a49ebbdb6bf1a6c03eeb970a2 (diff) | |
download | openembedded-core-53973f286bda45086deb932076d09997624804da.tar.gz openembedded-core-53973f286bda45086deb932076d09997624804da.tar.bz2 openembedded-core-53973f286bda45086deb932076d09997624804da.zip |
opkg: fix build with gcc 4.3.2
opkg has the -Werror flag enabled and gcc 4.3.2 introduces new warnings.
Diffstat (limited to 'meta/packages/opkg/opkg.inc')
-rw-r--r-- | meta/packages/opkg/opkg.inc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/meta/packages/opkg/opkg.inc b/meta/packages/opkg/opkg.inc index d131753ddb..c2e840908c 100644 --- a/meta/packages/opkg/opkg.inc +++ b/meta/packages/opkg/opkg.inc @@ -6,8 +6,14 @@ LICENSE = "GPL" DEPENDS = "curl gpgme" PV = "0.0+svnr${SRCREV}" +# opkg-fix-gcc-warnings.patch: the patch is already upstreamed and could be +# taken out once okpg is updated to new repo +# http://opkg.googlecode.com/svn/trunk +# with rev >= 150 + SRC_URI = "svn://svn.openmoko.org/trunk/src/target/;module=opkg;proto=http \ - file://fix_prototype.patch;patch=1" + file://fix_prototype.patch;patch=1 \ + file://opkg-fix-gcc-warnings.patch;patch=1" S = "${WORKDIR}/opkg" |