summaryrefslogtreecommitdiff
path: root/autoconf/AutoRegen.sh
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-09-19 22:30:53 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-09-19 22:30:53 +0000
commit8eacb0c3a7489b86a7f5523ff4992452bc0b7941 (patch)
tree9ec6dcb229b012d873576f4366b9539dca7679ab /autoconf/AutoRegen.sh
parentb03adb8cab6122347d062427a27fef8d4bf85c70 (diff)
downloadllvm-8eacb0c3a7489b86a7f5523ff4992452bc0b7941.tar.gz
llvm-8eacb0c3a7489b86a7f5523ff4992452bc0b7941.tar.bz2
llvm-8eacb0c3a7489b86a7f5523ff4992452bc0b7941.tar.xz
Make the "Warning" notice a LOT more prominent.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16414 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf/AutoRegen.sh')
-rwxr-xr-xautoconf/AutoRegen.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/autoconf/AutoRegen.sh b/autoconf/AutoRegen.sh
index 4014e2c06f..fd3ff748b9 100755
--- a/autoconf/AutoRegen.sh
+++ b/autoconf/AutoRegen.sh
@@ -21,7 +21,16 @@ libtool --version | grep '1.5.10' > /dev/null
if test $? -ne 0 ; then
die "Your libtool was not detected as being 1.5.10"
fi
-echo "Note: Warnings about 'AC_CONFIG_SUBDIRS: you should use literals' are ok"
+echo ""
+echo "### NOTE: ############################################################"
+echo "### If you get *any* warnings from autoconf below other than warnings"
+echo "### about 'AC_CONFIG_SUBDIRS: you should use literals', you MUST fix"
+echo "### the scripts in the m4 directory because there are future forward"
+echo "### compatibility or platform support issues at risk. Please do NOT"
+echo "### commit any configure.ac or configure script that was generated "
+echo "### with warnings present."
+echo "######################################################################"
+echo ""
echo "Regenerating aclocal.m4 with aclocal"
cwd=`pwd`
aclocal --force -I $cwd/m4 || die "aclocal failed"