> .INTERMEDIATE: 1.o
That's exactly what I was looking for.
Thank you very much :)
Is there a way to export a shell function definition from configure.in
to configure?
I have something like:
function blabla {
}
...
blabla arg1 arg2 arg2
AC_ARG_WITH ...
...
in my configure.in
But then blabla gets stripped off by autoconf so I get
./configure: line : blabla: command no
Hello Petter,
* Petter Gustad wrote on Fri, Oct 26, 2007 at 04:23:37PM CEST:
>
> function blabla {
> }
> ...
> blabla arg1 arg2 arg2
[...]
> But then blabla gets stripped off by autoconf so I get
>
> ./configure: line : blabla: command not found
That's really weird, I can't reproduce that