blob: 66e8dbcda504630485b763a0e278a38a626b40de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require opkg-nogpg_svn.bb
DEPENDS = ""
PROVIDES += "opkg"
PR = "${INC_PR}"
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"
|