On Mon, Apr 2, 2012 at 6:16 AM, Bryan Evenson <beven...@melinkcorp.com> wrote: > My Bitbake recipe is pretty minimal: > > DESCRIPTION = "App Name" > AUTHOR = "Author" > PR = "r1" > SRC_URI = "file:///path/to/tarball/${PN}-${PV}.tar.gz" > DEPENDS = "virtual/kernel" > > S = "${WORKDIR}" > > inherit autotools > > do_install () { > install -d ${D}${bindir}/ > install -m 0755 ${S}/${TARGET} ${D}${bindir}/ > } > > FILES_${PN} = "${bindir}/${TARGET}" > > It looks like autotools is expecting to find > /media/sda3/stuff/tmp/work/armv5te-angstrom-linux-gnueabi/ih3-main-app-0.0.1-r1/configure.ac, > but I don't have one at that level; all of my working files are one level > deeper at > /media/sda3/stuff/tmp/work/armv5te-angstrom-linux-gnueabi/ih3-main-app-0.0.1-r1/ih3-main-app-0.0.1/. > I can't figure out how to tell autotools where configure.ac really lives. > Any ideas?
${S} is not pointing to where it should change it to S = ${WORKDIR}/ih3-main-app-${PV} and see if that helps _______________________________________________ Angstrom-distro-devel mailing list Angstrom-distro-devel@linuxtogo.org http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/angstrom-distro-devel