Hi Bryan,

On 02.04.2012 15:16, Bryan Evenson 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?

Your S variable is supposed to point to your source folder.

S = "${WORKDIR}/ih3-main-app-0.0.1/"

Regards,

-- 
Christophe Aeschlimann

Embedded Software Engineer & IT Manager
ACN Advanced Communications Networks S.A.
2000 - Neuchâtel, Switzerland
Tel. +41 32 724 74 31

_______________________________________________
Angstrom-distro-devel mailing list
Angstrom-distro-devel@linuxtogo.org
http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/angstrom-distro-devel

Reply via email to