Add some extra messages so users don't shoot themselves in the

foot by trying to run aclocal by hand.  gettextize tells them
to do so; add a warning to ignore it.  Hopefully users will listen.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@8284 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2003-05-09 21:13:19 +00:00
parent 5f35450e82
commit 44f314dfe8

View File

@ -244,6 +244,11 @@ do
echo "Making $dr/aclocal.m4 writable ..."
test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4
fi
echo
echo "*** WARNING ***"
echo "*** Ignore any instruction above about running aclocal by hand."
echo "*** I repeat, do not run aclocal by hand. You have been warned....."
echo
if grep "^AC_PROG_INTLTOOL" configure.in >/dev/null; then
echo "Running ${INTLTOOLIZE} ..."
${INTLTOOLIZE} --copy --force --automake
@ -267,6 +272,7 @@ do
if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then
echo "Running ${AUTOHEADER}..."
echo "Note: you can ignore messages about using deprecated aux files"
${AUTOHEADER} || { echo "**Error**: autoheader failed."; exit 1; }
fi
echo "Running ${AUTOMAKE} --gnu $am_opt ..."