summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2013-01-23 16:36:41 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2013-01-23 16:36:41 +0000
commit999c0536519d4304f2d9bb6f74e15e0f0a21cdaf (patch)
tree6267307b58392f9959c995d402755c0feead00fa /autogen.sh
parent693f81d9b37934fdb3a0b1de6d06cacbecaffb63 (diff)
downloadpcre-999c0536519d4304f2d9bb6f74e15e0f0a21cdaf.tar.gz
Deal with warnings given by automake 1.12.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1240 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh
index 8a69c22..0d5a55f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -6,10 +6,6 @@
# again. Moving aclocal to after libtoolize does not seem to cause any
# problems, and it fixes this issue.
-#set -ex
-#rm -rf autom4te.cache Makefile.in aclocal.m4
-#aclocal --force -I m4
-
# GNU libtool is named differently on some systems. This code tries several
# variants like glibtoolize (MacOSX) and libtoolize1x (FreeBSD)
@@ -37,7 +33,11 @@ rm -rf autom4te.cache Makefile.in aclocal.m4
aclocal --force -I m4
autoconf -f -W all,no-obsolete
autoheader -f -W all
-automake -a -c -f -W all
+
+# Added no-portability to suppress automake 1.12's warning about the use
+# of recursive variables.
+
+automake -a -c -f -W all,no-portability
rm -rf autom4te.cache
exit 0