blob: cd8751ae87886f033a18af9e5ab926642b44f7d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require opkg-nogpg_svn.bb
DEPENDS = ""
PROVIDES += "opkg"
PR = "${INC_PR}"
SRCREV = "${SRCREV_pn-opkg}"
EXTRA_OECONF += " --disable-curl --enable-static --disable-shared"
# 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"
|