summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorRalph Giles <giles@xiph.org>2005-08-02 21:37:57 +0000
committerRalph Giles <giles@xiph.org>2005-08-02 21:37:57 +0000
commit4d87b53c987d0b4c548d6dd6b0f8a0e319f2f891 (patch)
treeb254ad643d40b1a430c6ab8d21cf66c8e182cd28 /autogen.sh
parentc98ad3ded46a48d85b15225c02e44ec2167fec8a (diff)
downloadogg-4d87b53c987d0b4c548d6dd6b0f8a0e319f2f891.tar.gz
Move our invocation of autoheader until after automake. There is a
dependency there, at least in the Automake-generated makefile that was forcing a re-run after every autogen. We now invoke it right before autoconf. git-svn-id: http://svn.xiph.org/trunk/ogg@9693 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index 82af62b..ee43b01 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -103,12 +103,12 @@ echo "Generating configuration files for $package, please wait...."
echo " $ACLOCAL $ACLOCAL_FLAGS"
$ACLOCAL $ACLOCAL_FLAGS || exit 1
-echo " autoheader"
-autoheader || exit 1
echo " $LIBTOOLIZE --automake"
$LIBTOOLIZE --automake || exit 1
echo " $AUTOMAKE --add-missing $AUTOMAKE_FLAGS"
$AUTOMAKE --add-missing $AUTOMAKE_FLAGS || exit 1
+echo " autoheader"
+autoheader || exit 1
echo " autoconf"
autoconf || exit 1