summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Smith <msmith@xiph.org>2005-10-10 15:10:17 +0000
committerMike Smith <msmith@xiph.org>2005-10-10 15:10:17 +0000
commit08d27d13f4cc2ec9d1cfd939dfe8d5cdad3034ca (patch)
tree15e4bc7d6e9200ad96db8983a1481da0f23ffc71
parentf86cb9e63c1b5a5176a2e89fc84294acf34846b7 (diff)
downloadogg-git-08d27d13f4cc2ec9d1cfd939dfe8d5cdad3034ca.tar.gz
Autoheader must run before automake, to generate config.h.in, which automake
wants. Despite this commit, I am not an autotools hacker. I hates it. svn path=/trunk/ogg/; revision=10146
-rwxr-xr-xautogen.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh
index d2314f7..5e9ec76 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -105,10 +105,10 @@ echo " $ACLOCAL $ACLOCAL_FLAGS"
$ACLOCAL $ACLOCAL_FLAGS || 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 " $AUTOMAKE --add-missing $AUTOMAKE_FLAGS"
+$AUTOMAKE --add-missing $AUTOMAKE_FLAGS || exit 1
echo " autoconf"
autoconf || exit 1