blob: e401d13d807398fadf2379fef02f7ba364a75238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
DEPENDS = "virtual/libc"
RDEPENDS = "libc6"
SRC_URI = ftp://ftp.sudo.ws/pub/sudo/sudo-${PV}.tar.gz \
file://${FILESDIR}/nonrootinstall.patch;patch=1 \
file://${FILESDIR}/configure.patch;patch=1
inherit autotools
do_configure_prepend () {
if [ ! -e acinclude.m4 ]; then
cat aclocal.m4 > acinclude.m4
fi
}
|