Hi! Now, autoreconf invoke automake with --no-force option. Are there any reasons?
I created a sample package using Libtool, Automake, and Autoconf, then I ran `autoreconf -si', `./configure', and `make distcheck'. I had not run `automake'. I got an error below: ../../config/depcomp: ../../config/depcomp: No such file or directory # I used AC_CONFIG_AUX_DIR([config]). After that, I ran `automake', and `make distcheck', then it works fine. Makefile.in before running `automake', and after running `automake' have different lines below: diff Makefile.in.before Makefile.in.after 130,132c130,133 < DIST_COMMON = Makefile.am Makefile.in aclocal.m4 config/config.guess \ < config/config.sub config/install-sh config/ltmain.sh \ < config/missing config/mkinstalldirs configure configure.in --- > DIST_COMMON = Makefile.am Makefile.in aclocal.m4 config/compile \ > config/config.guess config/config.sub config/depcomp \ > config/install-sh config/ltmain.sh config/missing \ > config/mkinstalldirs configure configure.in That comes from --no-force option. My autoreconf usage is not normal, but autoreconf is very useful for me. I wish autoreconf invoked `automake' without --no-force. Thanks autoconf (GNU Autoconf) 2.54 automake (GNU automake) 1.7 ltmain.sh (GNU libtool) 1.4.2 -- Nishio Futoshi <[EMAIL PROTECTED]>