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
commita80448d53054829cc28e477395683ed5f9be69bd (patch)
treeb254ad643d40b1a430c6ab8d21cf66c8e182cd28 /autogen.sh
parent9e56d54565fc13f9ae49d135fcb3a2cb8489ca48 (diff)
downloadogg-git-a80448d53054829cc28e477395683ed5f9be69bd.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. svn path=/trunk/ogg/; revision=9693
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