* autogen.sh: Make sure to get new versions of files brought in by automake.
test $retval -eq 0 || exit $retval
fi
+## Make sure we get new versions of files brought in by automake.
+#(cd build-aux && rm -f ar-lib compile depcomp install-sh mdate-sh missing test-driver)
+
# Generate configure script in each subdirectories.
dir0=`pwd`
|| exit $?
cd "$dir0"
-aclocal -I m4 && autoconf && touch ChangeLog && automake || exit $?
+aclocal -I m4 \
+ && autoconf \
+ && touch ChangeLog \
+ && automake --add-missing --copy \
+ || exit $?
echo "$0: done. Now you can run './configure'."