blob: 516cbef1603ac2919564fcb8f5843b7e09dd00f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
PR = "${INC_PR}.0"
SRC_URI = " \
${GNU_MIRROR}/wget/wget-${PV}.tar.gz \
file://m4macros.patch;patch=1 \
file://autotools.patch;patch=1 \
file://ipv6-fix.patch;patch=1 \
"
S = "${WORKDIR}/wget-${PV}"
do_configure_prepend () {
if [ ! -e acinclude.m4 ]; then
mv aclocal.m4 acinclude.m4
fi
rm -f libtool.m4
}
require wget.inc
|