[oe] [PATCH] mc 4.6.2: fix do_configure error on missing config.rpath

Jens Seidel jensseidel at users.sf.net
Tue Feb 9 08:44:42 UTC 2010


On Mon, Feb 08, 2010 at 08:50:12PM +0100, Petr Štetiar wrote:
> This patch fixes configure error, complaining about missing config.rpath file
> which gets deleted by autofoo in recipe, so to avoid error bellow we create
> empty file, making configure happy.
 
> configure.ac:104: required file `config/config.rpath' not found
> [...snip...]
> autoreconf: automake failed with exit status: 1
> FATAL: autoreconf execution failed.

> @@ -86,4 +86,6 @@ AUTOFOO="config.guess config.rpath config.sub depcomp install-sh missing mkinsta
>           for i in ${AUTOFOO}; do
>             rm config/${i}
>           done
> +         # raises error if it's not found
> +         touch config/config.rpath
>  }

Mhm, and you know that this patch is right? If config.rpath is called it is
expected that it sets a few variables such as shlibext (normally to "so"),
libext ("a") but this does not happen with an empty config.rpath. This patch
may indeed fix the current error but what about support for all platforms?
I would ship a proper file instead of a faked one and I mentioned that e.g.
autopoint creates this file ...

Jens




More information about the Openembedded-devel mailing list