[xiph-commits] r10146 - trunk/ogg
msmith at svn.xiph.org
msmith at svn.xiph.org
Mon Oct 10 08:10:19 PDT 2005
Author: msmith
Date: 2005-10-10 08:10:17 -0700 (Mon, 10 Oct 2005)
New Revision: 10146
Modified:
trunk/ogg/autogen.sh
Log:
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.
Modified: trunk/ogg/autogen.sh
===================================================================
--- trunk/ogg/autogen.sh 2005-10-10 12:05:13 UTC (rev 10145)
+++ trunk/ogg/autogen.sh 2005-10-10 15:10:17 UTC (rev 10146)
@@ -105,10 +105,10 @@
$ACLOCAL $ACLOCAL_FLAGS || exit 1
echo " $LIBTOOLIZE --automake"
$LIBTOOLIZE --automake || exit 1
+echo " autoheader"
+autoheader || 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
More information about the commits
mailing list