aboutsummaryrefslogtreecommitdiffstats
path: root/packages/automake/automake-native_1.8.2.bb
blob: 9a8b1726a83d4028039d7d5110cd5b86541c19a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SECTION = "devel"
require automake_${PV}.bb
S = "${WORKDIR}/automake-${PV}"
DEPENDS = "autoconf-native"
RDEPENDS_${PN} = "autoconf-native perl-native-runtime"

inherit native

do_stage () {
	oe_runmake install
	install -d ${datadir}
	if [ ! -e ${datadir}/aclocal ]; then
		ln -sf aclocal-1.8 ${datadir}/aclocal
	fi
	if [ ! -e ${datadir}/automake ]; then
		ln -sf automake-1.8 ${datadir}/automake
	fi
}