blob: ddccc15d4649da2a71fd8ff6974d4ac3854e2275 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require opkg_svn.bb
DEPENDS = "curl"
PROVIDES += "opkg"
SRC_URI += "file://reduce-nogpg-noise.patch;patch=1;maxrev=4641"
PR = "r1"
SRCREV = "${SRCREV_pn-opkg}"
EXTRA_OECONF += "--disable-gpg"
# The nogpg version isn't getting much love and has an unused variable which trips up -Werror
do_configure_prepend() {
sed -i -e s:-Werror::g ${S}/libopkg/Makefile.am
}
DEFAULT_PREFERENCE = "-1"
|