Re: 2 level dependencies in Makefiles

2007-10-26 Thread [EMAIL PROTECTED]
> .INTERMEDIATE: 1.o That's exactly what I was looking for. Thank you very much :)

autoconf: exporting functions

2007-10-26 Thread Petter Gustad
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

Re: autoconf: exporting functions

2007-10-26 Thread Ralf Wildenhues
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