Displaying 4 results from an estimated 4 matches for "automake_flags".
2004 Apr 15
1
[PATCH] theora/{Makefile.am,autogen.sh}
...aclocal $ACLOCAL_FLAGS"
-aclocal $ACLOCAL_FLAGS || exit 1
+echo " $ACLOCAL $ACLOCAL_FLAGS"
+$ACLOCAL $ACLOCAL_FLAGS
echo " autoheader"
autoheader || exit 1
-echo " libtoolize --automake"
-libtoolize --automake || exit 1
-echo " automake --add-missing $AUTOMAKE_FLAGS"
-automake --add-missing $AUTOMAKE_FLAGS
+echo " $LIBTOOLIZE --automake"
+$LIBTOOLIZE --automake
+echo " $AUTOMAKE --add-missing $AUTOMAKE_FLAGS"
+$AUTOMAKE --add-missing $AUTOMAKE_FLAGS
echo " autoconf"
autoconf || exit 1
2004 Jul 19
0
Ogg Vorbis CVS (ok,
...TOOLIZE=libtoolize13 $0"
DIE=1
}
@@ -105,12 +131,12 @@
$ACLOCAL $ACLOCAL_FLAGS
#echo " autoheader"
#autoheader
-echo " $LIBTOOLIZE --automake"
-$LIBTOOLIZE --automake
+echo " $libtoolize --automake"
+$libtoolize --automake
echo " $AUTOMAKE --add-missing $AUTOMAKE_FLAGS"
$AUTOMAKE --add-missing $AUTOMAKE_FLAGS
-echo " autoconf257 "
-autoconf257
+echo " autoconf "
+${AUTOCONF}
cd $olddir
$srcdir/configure "$@" && echo
Again, sorry this isn't a clean patch. I'm instead seeking feedback
whether this is a good...
2012 Dec 12
0
[PATCH 2/5] autogen.sh: replace this by a simple call to autoreconf
...uration files for $package, please wait...."
-
-echo " $ACLOCAL $ACLOCAL_FLAGS"
-$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 " autoconf"
-autoconf || exit 1
-
-cd $olddir
-$srcdir/configure "$@" && echo
+# We trust that the user has a recent enough autoconf & automake setup
+# (not older than a few years...)
+autoreconf -i
+#$...
2012 Dec 12
8
[PATCH 0/5] update build system
This patch series modernizes various aspects of the autotools
based build system. There is a lot more that could and should be
done, but I tried to stay conservative for now and just resolve
some of the most obvious issues.
Max Horn (5):
configure: replace XIPH_C_FIND_ENDIAN by AC_C_BIGENDIAN
autogen.sh: replace this by a simple call to autoreconf
configure: always print