Re: no config.sub/guess copied

2005-11-20 Thread Thomas Dickey
On Sun, 20 Nov 2005, Stepan Kasal wrote: Well, the interface between Autoconf and config.sub/guess is very simple and I don't think it has ever changed. It was broken for a while around autoconf 2.51 -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net

Re: no config.sub/guess copied

2005-11-20 Thread Stepan Kasal
Hello, On Tue, Nov 15, 2005 at 06:14:39PM +, Vincent Torri wrote: > > I suggest that this script copies the needed files from > > somewhere (eg. /usr/share/automake-1.9/), without calling automake. > > ok. That answer my question above. So I just have to be sure that > config.sub/guess which

Re: no config.sub/guess copied

2005-11-15 Thread Vincent Torri
On Tue, 15 Nov 2005, Stepan Kasal wrote: > Hello, > > On Tue, Nov 15, 2005 at 08:07:01AM +, Vincent Torri wrote: > > AC_CANONICAL_TARGET > > AC_CONFIG_AUX_DIR([.]) > > AM_INIT_AUTOMAKE > > AC_CONFIG_AUX_DIR has to be called before AC_CANONICAL_TARGET. ok, that should be the main problem, I

Re: no config.sub/guess copied

2005-11-15 Thread Ralf Wildenhues
* Stepan Kasal wrote on Tue, Nov 15, 2005 at 12:35:15PM CET: > > But you mean another "distribution": something like CVS or other version > management system's repository. > But such repository usually contains a script which calls autotools to > initialte the build. This script might be called "

Re: no config.sub/guess copied

2005-11-15 Thread Stepan Kasal
Hello, On Tue, Nov 15, 2005 at 08:07:01AM +, Vincent Torri wrote: > AC_CANONICAL_TARGET > AC_CONFIG_AUX_DIR([.]) > AM_INIT_AUTOMAKE AC_CONFIG_AUX_DIR has to be called before AC_CANONICAL_TARGET. > I mention that I use the autotools in such a way that there is no > Makefile.am. I have alread

no config.sub/guess copied

2005-11-14 Thread Vincent Torri
Hello, I invoke automake -a -c and no config.sub or config.guess are copied. In my configure.ac, I use: AC_CANONICAL_TARGET AC_CONFIG_AUX_DIR([.]) AM_INIT_AUTOMAKE According to the doc, that should copy config.sub and config.guess in the current directory. My version of automake is 1.9.2. Wh