From: Nick Bowler Date: Thu, 19 Mar 2009 19:18:16 +0000 (-0400) Subject: Remove --force from autogen.sh as it makes things slower. X-Git-Url: http://git.draconx.ca/gitweb/aspectbin.git/commitdiff_plain/bd5a346fe1f7e633284c54a812ccf03966e8cd8e Remove --force from autogen.sh as it makes things slower. --- diff --git a/autogen.sh b/autogen.sh index 6ab185f..a770936 100755 --- a/autogen.sh +++ b/autogen.sh @@ -6,8 +6,8 @@ die() exit 1 } -aclocal --force -I m4 || die "Failed to run aclocal." -autoheader --force || die "Failed to run autoheader." -libtoolize --force --copy || die "Failed to run libtoolize." -automake --force --add-missing || die "Failed to run automake." -autoconf --force || die "Failed to run autoconf." +aclocal -I m4 || die "Failed to run aclocal." +autoheader || die "Failed to run autoheader." +libtoolize --copy || die "Failed to run libtoolize." +automake --add-missing || die "Failed to run automake." +autoconf || die "Failed to run autoconf."