For the native case do not ask BitBake to build automake-native,
packages that need automake can DEPEND on it directly. This avoids
circular depenendencies as autoconf-native would ask for automake-native
and automake-native would ask for autoconf-native again.
This 'fix' (I think it is proper) avoids build errors on broken
debian systems. And making OpenEmbedded independant of the host
once again.
include autoconf_${PV}.bb
DEPENDS = "m4-native gnu-config-native"
RDEPENDS_${PN} = "m4-native gnu-config-native"
-RRECOMMENDS_${PN} = "automake-native"
+RRECOMMENDS_${PN} = ""
S = "${WORKDIR}/autoconf-${PV}"
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/autoconf-${PV}"