From 44f314dfe8e4fb7adff5e65040d094c483258532 Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Fri, 9 May 2003 21:13:19 +0000 Subject: [PATCH] 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 --- macros/autogen.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/macros/autogen.sh b/macros/autogen.sh index 5487c5d295..39631547f4 100644 --- a/macros/autogen.sh +++ b/macros/autogen.sh @@ -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 ..."