diff options
Diffstat (limited to 'automake')
-rw-r--r-- | automake/automake-native_1.8.2.oe | 1 | ||||
-rw-r--r-- | automake/automake-native_1.8.4.oe | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/automake/automake-native_1.8.2.oe b/automake/automake-native_1.8.2.oe index 35e38018d7..066e66f8fa 100644 --- a/automake/automake-native_1.8.2.oe +++ b/automake/automake-native_1.8.2.oe @@ -1,3 +1,4 @@ +SECTION = "devel" include automake_${PV}.oe S = "${WORKDIR}/automake-${PV}" DEPENDS = "autoconf-native" diff --git a/automake/automake-native_1.8.4.oe b/automake/automake-native_1.8.4.oe index e69de29bb2..066e66f8fa 100644 --- a/automake/automake-native_1.8.4.oe +++ b/automake/automake-native_1.8.4.oe @@ -0,0 +1,17 @@ +SECTION = "devel" +include automake_${PV}.oe +S = "${WORKDIR}/automake-${PV}" +DEPENDS = "autoconf-native" + +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 +} |